
机器学习
xijingmingxijingming
这个作者很懒,什么都没留下…
展开
-
overflow and underflow
讲解overflow and underflow主要参考这篇博客:https://blog.youkuaiyun.com/weixin_42936560/article/details/87733605感觉讲的比较清楚,摘抄如下:------------------------------------------------------------------------------------...原创 2020-03-16 11:23:10 · 292 阅读 · 0 评论 -
win10 Python - 安装库方法汇总
win10系统,安装了pycharm community 2019.3版本,安装包文件有2种方法方法1:1、在pycharm中File---setting,出现如下界面选择Project Interpreter,点击右方的“+”号,在列表中输入需要安装的库,然后点击左下方install。使用这种方法有时候会遇到以下错误:Microsoft Visual C++ 14.0 i...原创 2020-03-04 18:21:17 · 938 阅读 · 0 评论 -
Windows Python-pip版本查看和升级
在pycharm中安装包时,会提示You are using pip version xx.xx.xx, however version xx.xx.xx is available.想升级下pip的版本,主要参考这篇博文:https://blog.youkuaiyun.com/qq_38161040/article/details/84134124-----------------------...原创 2020-03-04 17:35:57 · 1391 阅读 · 0 评论 -
windows利用pip安装python包(numpy为例)
pycharm和cmd中安装numpy报错,unable to establish a connection1.去https://pypi.python.org/pypi/setuptools#downloads 下载setuptools-26.1.1.zip(md5)。2.解压后,用命令行进入解压后目录,输入setup.py3. 用命令行输入pip install numpy....原创 2020-02-19 15:14:20 · 466 阅读 · 0 评论 -
吴恩达-深度学习-资源
找到资料,希望后面持续学习,这里记录一下,方便找到1. 视频资料:https://mooc.study.163.com/smartSpec/detail/1001319001.htm2. 详细笔记网站(中文):http://www.ai-start.com/dl2017/3.github课件+作业+答案:https://github.com/stormstone/deepl...原创 2019-11-08 19:39:56 · 193 阅读 · 0 评论 -
"error while loading shared libraries: xxx.so.x" 错误的原因和解决办法
今天执行caffe例子mnist时,报错如下:error while loading shared libraries: libcaffe.so.1.0.0-rc3: cannot open shared object file: No such file or directory错误的原因:找不到lib这个文件。原因一般有两个, 一个是操作系统里确实没有包含该共享库(lib.so...原创 2019-11-04 13:56:00 · 573 阅读 · 0 评论 -
caffe入门学习
找到2个比较好的帖子参考:http://www.cnblogs.com/denny402/tag/caffe/default.html?page=1http://blog.youkuaiyun.com/u011762313/article/category/5705779/1原创 2019-11-04 13:38:07 · 132 阅读 · 0 评论 -
compile pycaffe problems
refer tohttps://www.cnblogs.com/denny402/p/5088399.html原创 2018-05-03 23:32:53 · 137 阅读 · 0 评论 -
Ubuntu 14.04+GT720M+CUDA8.0+CUDNN+PYCAFFE
安装系统:Ubuntu14.04安装前执行:sudo apt-get updatesudo apt-get install g++CUDA8.0包括2部分内容:Driver+Tool Kit,所以安装CUDA之前不用安装NVIDIA显卡的驱动。但是Ubuntu14.04自带第三方开发的Nvidia驱动,安装CUDA前需要屏蔽。一 屏蔽开源驱动1. 执行如下命令:sudo gedit /etc/mo...原创 2018-05-08 23:42:20 · 545 阅读 · 0 评论