知海无涯学无止境
码龄10年
  • 643,949
    被访问
  • 25
    原创
  • 1,618,474
    排名
  • 56
    粉丝
关注
提问 私信
  • 加入CSDN时间: 2012-10-13
博客简介:

jyl1999xxxx的博客

查看详细资料
个人成就
  • 获得88次点赞
  • 内容获得54次评论
  • 获得203次收藏
创作历程
  • 1篇
    2021年
  • 2篇
    2020年
  • 22篇
    2019年
  • 23篇
    2018年
  • 57篇
    2017年
  • 100篇
    2016年
  • 5篇
    2015年
成就勋章
TA的专栏
  • 视频编解码
    2篇
兴趣领域 设置
  • 人工智能
    机器学习深度学习
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

CUDA Eclipse Nsight 不能打开工程 an error has occurred see the log file

解决方法:打开Linux终端,输入命令:echo 'export PATH=/usr/local/cuda-10.0/bin/:$PATH'>>~/.bashrcecho 'export LD_LIBRARY_PATH=/usr/local/cuda-10.0/lib64:$LD_LIBRARY_PATH'>>/.bashrcsource ~/.bashrc
转载
发布博客 2021.04.10 ·
71 阅读 ·
0 点赞 ·
0 评论

pip 安装 imagecodecs 失败

很多类似问题都是需要pip install --user --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple再重新安装
原创
发布博客 2020.05.25 ·
913 阅读 ·
0 点赞 ·
0 评论

cuda_runtime_api.h 找不到

export CUDA_HOME=$HOME/tools/cuda-9.0 # change to your pathexport CUDA_TOOLKIT_ROOT_DIR=$CUDA_HOMEexport LD_LIBRARY_PATH="$CUDA_HOME/extras/CUPTI/lib64:$LD_LIBRARY_PATH"export LIBRARY_PATH=$CUDA_HOME/lib64:$LIBRARY_PATHexport LD_LIBRARY_PATH=$CUDA_HOM.
翻译
发布博客 2020.05.21 ·
3218 阅读 ·
0 点赞 ·
0 评论

/usr/lib/sudo/sudoers.so must be only be writable by owner

https://askubuntu.com/questions/92556/how-do-i-boot-into-a-root-shell如果你连 sudo su 都无法获取权限,那么只能:在boot 之后立刻按 Esc or Shift,进入 Ubuntu Recovery Mode然后"Enable networking" ->"Drop to a root shell...
翻译
发布博客 2019.10.10 ·
398 阅读 ·
0 点赞 ·
0 评论

darknet activate_array

void activate_array(float *x, const int n, const ACTIVATION a){ int i; for(i = 0; i < n; ++i){ x[i] = activate(x[i], a); }}
转载
发布博客 2019.08.27 ·
223 阅读 ·
0 点赞 ·
0 评论

ImportError: dynamic module does not define module export function (PyInit__caffe)

It can be solved if you step back to python version 2.
原创
发布博客 2019.07.30 ·
1436 阅读 ·
1 点赞 ·
1 评论

Install torch and torchvision

The official stsps for installation is as follows:pip3 install https://download.pytorch.org/whl/cu80/torch-1.0.1.post2-cp35-cp35m-linux_x86_64.whlpip3 install torchvisionHowever, torchvision is ...
原创
发布博客 2019.07.27 ·
430 阅读 ·
0 点赞 ·
0 评论

word 中同样的字号和行距倍数,不一样的行距

https://blog.csdn.net/missingu1314/article/details/24430165http://www.xyduan.net/the-same-single-line-spacing-line-spacing-is-different/两篇文档,都是小四号字,都是单倍行距,可是行距明显不同,把其中的一个文档的一页复制到另一个文档,可以占一页半内容。为什么...
转载
发布博客 2019.05.06 ·
1695 阅读 ·
1 点赞 ·
0 评论

ImportError: cannot import name main when running pip

https://stackoverflow.com/questions/28210269/importerror-cannot-import-name-main-when-running-pip-version-command-in-windoEven though the original question seems to be from 2015, this 'bug' seems to...
转载
发布博客 2019.03.13 ·
118 阅读 ·
0 点赞 ·
0 评论

Ubuntu 16.04 安装 cuda 7.5.run BEGIN failed--compilation aborted at ./cuda-installer.pl line 5

sudo apt install freeglut3-dev build-essential libx11-dev libxmu-dev \libxi-dev libgl1-mesa-glx libglu1-mesa libglu1-mesa-dev libglfw3-dev libgles2-mesa-dev
转载
发布博客 2019.03.03 ·
1139 阅读 ·
2 点赞 ·
0 评论

"package gcc-4.9 is not available, but is referred to by another package", 安装gcc时出错的解决方法

https://stackoverflow.com/questions/48398475/fail-to-install-gcc-4-9-in-ubuntu17-04sudo apt-get update --fix-missingsudo apt-get dist-upgradesudo apt-get install gcc-4.9 g++-4.9 gcc-4.9-multilib...
转载
发布博客 2019.03.03 ·
6748 阅读 ·
0 点赞 ·
1 评论

多版本opencv 兼容

https://blog.csdn.net/learning_tortosie/article/details/80594399多版本OpenCV共存假设我们已经安装好一版OpenCV,一般都安装在/usr/local下。如果需要安装另一个版本的OpenCV,就不能再安装到/usr/local,而是选择其他路径,否则会覆盖掉之前的版本。下载OpenCV首先去https://open...
转载
发布博客 2019.02.27 ·
262 阅读 ·
0 点赞 ·
0 评论

luarocks 安装hdf5的过程中 fatal error: hdf5.h: No such file or directory

 https://ahmedibrahimvt.wordpress.com/2017/02/19/fatal-error-hdf5-h-no-such-file-or-directory/First, you need to make sure the HDF5 packages are installed. If they are not installed, you can insta...
转载
发布博客 2019.02.22 ·
826 阅读 ·
0 点赞 ·
1 评论

darknet 训练 cannot load image

train.txt 的末尾 不应是'\r
' 而应是 '
' 
翻译
发布博客 2019.02.22 ·
2921 阅读 ·
0 点赞 ·
0 评论

pip ImportError: cannot import name 'main' after update

sudo python3 -m pip uninstall pip &amp;&amp; sudo apt install python3-pip --reinstallChang 'pip' to 'pip3'
转载
发布博客 2019.02.22 ·
79 阅读 ·
0 点赞 ·
0 评论

th: command not found

source ~/.bashrc
转载
发布博客 2019.02.21 ·
1780 阅读 ·
1 点赞 ·
0 评论

Pocketflow 使用

Pocketflow的简介:https://pocketflow.github.io/由两个modules组成:Learner module 负责利用随机hyperparameters压缩并fine-tuning,optimizer module 负责依据随机参数对应的结果确定最佳的压缩参数。Learn module 遍历的hyperparameter来自于:Name Descrip...
翻译
发布博客 2019.02.18 ·
2609 阅读 ·
0 点赞 ·
3 评论

tf.variable_scope() and tf.name_scope()

https://blog.csdn.net/UESTC_C2_403/article/details/72328815tf.variable_scope可以让变量有相同的命名,包括tf.get_variable得到的变量,还有tf.Variable的变量tf.name_scope可以让变量有相同的命名,只是限于tf.Variable的变量例如:import tensorflow a...
转载
发布博客 2019.02.15 ·
207 阅读 ·
0 点赞 ·
0 评论

github 创建文件夹

https://blog.csdn.net/zhaomengszu/article/details/80354929 在我们不适用本地Git的情况下,我们怎么在网页上创建类似下图一样的文件夹呢四步方法:第一步:找到新增按钮第二步:输入文件夹名,你想要用的文件夹名字。第三步:输入文件名字后,再输入英文模式下的 “/”即可第四步:随意新增一个文件,以及键入一些内...
转载
发布博客 2019.02.08 ·
280 阅读 ·
0 点赞 ·
0 评论

python 压缩感知

http://www.pyrunner.com/weblog/2016/05/26/compressed-sensing-python/Compressed SensingIn this post I’ll be investigating compressed sensing (also known as compressive sensing, compressive sampling...
转载
发布博客 2019.01.23 ·
2778 阅读 ·
2 点赞 ·
0 评论
加载更多