自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Learning from the mistakes

我问佛∶世间为何有那麽多遗憾? 佛曰∶这是一个婆娑世界,婆娑既遗憾, 没有遗憾,给你再多幸福也不会体会快乐。

  • 博客(5)
  • 资源 (13)
  • 问答 (1)
  • 收藏
  • 关注

原创 ubuntu 16.04 安装mujoco-py==2.1.2.14

今天在ubuntu中安装了mujoco-py,安装过程还是挺曲折的,我这里记录一下我的安装过程:在这个网站上下载key, https://www.roboti.us/license.html在github下载源码:https://github.com/openai/mujoco-py这是官方readme的教程,照着做就行了:Download the MuJoCo version 2.1 binaries for Linux or OSX.Extract the downloaded mujoco2

2021-12-23 00:45:19 1309 5

原创 ubuntu 16.04 anaconda 切换清华的软件源安装pytorch

今天用anaconda安装pytorch的时候,发现安装的速度很慢,于是切换成了anaconda的软件源:conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/# 设置搜索时显示通道地址conda config --set

2021-12-18 19:09:51 1005

原创 python实现三叉树

最近用python实现了三叉树,觉得挺有意思的,所以分享出来:class Node: """The Node class. You should not change this!""" def __init__(self,ID,data): self.ID=ID self.data=data self.children = [] # This is a list of other Node objects. At first it is empty.def getID

2021-12-08 08:53:00 1453

原创 ImportError: cannot import name ‘loguniform‘ from ‘scipy.stats‘

今天在运行scipy的时候,出现了下面的错误:➜ a1 python starting_script.py --randomTraceback (most recent call last): File "starting_script.py", line 9, in <module> from scipy.stats import norm, loguniformImportError: cannot import name 'loguniform' from 'scipy

2021-12-05 21:08:21 2542 1

原创 python tqdm raise RuntimeError(“cannot join current thread“) RuntimeError: cannot join current thr

今天在用tqdm的时候出现了下面的错误:Exception ignored in: <function tqdm.__del__ at 0x7f78f8445320>Traceback (most recent call last): File "/root/anaconda3/lib/python3.7/site-packages/tqdm/_tqdm.py", line 931, in __del__ self.close() File "/root/anaconda3/

2021-12-02 19:42:46 1073

StegoShare.jar.zip

一个小工具,可以隐藏文件到某文件中,也可以从某文件中提取该文件

2021-05-24

openfst-1.6.7.tar.gz

编译ctcdecode所需要的第三方库,下载地址为:https://sites.google.com/site/openfst/home/openfst-down/openfst-1.6.7.tar.gz

2020-05-06

RotateDemo.rar

QT5版本的旋转图片的动画,编译器用的mingW,代码进行了重构改良,文章请参考: https://blog.csdn.net/w5688414/article/details/90072287

2019-05-10

springboot getopenid demo

springboot实现用户信息授权获取用户的id, 写的教程地址为https://blog.csdn.net/w5688414/article/details/88541743

2019-03-13

pytorch 0.3.1 python3.6 CPU版本whl

pytorch 0.3.1 python3.6 CPU版本whl,这个属于老版本了,在官网上都不容易找到,我这里分享出来

2019-03-11

NUS-WIDE多标签分类数据集整理

博客地址为:https://blog.csdn.net/w5688414/article/details/84593705 用keras进行多标签分类的图片数据集,图片取自于NUS-WIDE数据集

2018-11-29

VGG_ILSVRC_16_layers_fc_reduced.h5

VGG_ILSVRC_16_layers_fc_reduced.h5文件,用于ssd keras模型,考虑到国内没有搜到该资源,我来当当搬运工

2018-11-07

Jetson-TX2 tensorflow-1.3.0-cp35-cp35m-linux_aarch64.whl

最近编译成功了tensorflow 1.3的版本,tensorflow-1.3.0-cp35-cp35m-linux_aarch64.whl,把编译成功的文件分享给大家

2017-12-25

bazel-0.6.1-dist.zip 下载

官网地址为:https://github.com/bazelbuild/bazel/releases/,但是很难下载下来,我用的是校园网,都下了好久,我把我下载的包分享给大家,希望对大家有用

2017-11-15

Connectionist Temporal Classification: A Tutorial with Gritty Details

教程:Connectionist Temporal Classification详解补充中文翻译的对应的英文原版教程,链接为:http://blog.csdn.net/w5688414/article/details/77867786,希望能帮助到大家

2017-09-14

操作系统页面置换LRU,FIFO,OPT算法实现代码

LRU算法,FIFO算法,OPT算法,belady现象

2015-01-05

异步框架上传客户端示例

android异步框架应用的一个小小的示例

2014-09-16

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除