上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
摘要: Faster RCNN TensorFlow Python3.5 在Ubuntu16.04下的配置方法 [TOC] 安装过程 1. 深度学习环境Tensorflow的安装 参考这一篇博客: "https://www.cnblogs.com/pprp/p/9463974.html" 2. 安装pyth 阅读全文
posted @ 2018-08-12 21:39 pprp 阅读(6432) 评论(0) 推荐(0) 编辑
摘要: 深度学习环境搭建:Tensorflow1.4.0+Ubuntu16.04+Python3.5+Cuda8.0+Cudnn6.0 Reference https://zhuanlan.zhihu.com/p/31430631?utm_source=com.tencent.tim&utm_medium= 阅读全文
posted @ 2018-08-12 19:06 pprp 阅读(7923) 评论(0) 推荐(1) 编辑
摘要: Anaconda中常用的用法 conda 是开源包(packages)和虚拟环境(environment)的管理系统。 packages 管理: 可以使用 conda 来安装、更新 、卸载工具包 ,并且它更关注于数据科学相关的工具包。在安装 anaconda 时就预先集成了像 Numpy、Scipy 阅读全文
posted @ 2018-08-12 15:18 pprp 阅读(1566) 评论(0) 推荐(0) 编辑
摘要: 参考: "https://codereview.stackexchange.com/questions/26271/import izip for different versions of python" A common idiom that I use for Python2 Python3 阅读全文
posted @ 2018-08-12 09:41 pprp 阅读(2809) 评论(0) 推荐(0) 编辑
摘要: author:pprp date:18/8/12 1. AttributeError: Module Pip has no attribute 'main' solution:降低pip的版本 2. AttributeError: '_NamespacePath' object has no att 阅读全文
posted @ 2018-08-12 08:53 pprp 阅读(5098) 评论(1) 推荐(0) 编辑
摘要: Interspecies Knowledge Transfer for Facial Keypoint Detection关键点检测 " " " " Github地址: "Interspecies Knowledge Transfer for Facial Keypoint Detection(迁移 阅读全文
posted @ 2018-08-11 20:31 pprp 阅读(881) 评论(0) 推荐(0) 编辑
摘要: 解决anaconda中已经安装了opencv3,但无法import的问题 你可能遇见的问题: 1. ImportError: No module named cv2 2. ImportError: libz a147dcb0.so.1.2.3: cannot open shared object f 阅读全文
posted @ 2018-08-11 15:11 pprp 阅读(5976) 评论(0) 推荐(0) 编辑
摘要: 转载 "https://blog.csdn.net/qq_37541097/article/details/79045595" Ubuntu16.04 自带python2.7和python3.5两个版本,默认为python2.7,我使用的是3.5,所以首先将默认的python版本改为3.5. 在终端 阅读全文
posted @ 2018-08-11 10:58 pprp 阅读(5529) 评论(0) 推荐(0) 编辑
摘要: git clone 独家方法 最近需要下载网上很多github库,所以git clone 4kb/s 的速度可以把人逼疯,为了加速git clone才有了这篇博客 网上有很多加速的方案 比如 "blog1" "blog2" 还有很多,其中很大一部分加速方案都是建立在代理的基础上,如果对这个不熟悉的人 阅读全文
posted @ 2018-08-09 17:41 pprp 阅读(7720) 评论(0) 推荐(0) 编辑
摘要: apt get update无法正常使用 解决方法 "参考博客" [问题描述] 前几天执行apt相关命令(如apt get update),都会长时间停在``等待报头'',超时后,显示连接超时。 换了快速指南上提到的所有源,但是依然没有效果 今天执行的时候,打印出了如下信息: 代码: "全选" 上网 阅读全文
posted @ 2018-08-09 17:28 pprp 阅读(4165) 评论(0) 推荐(0) 编辑
摘要: [TOC] 首先ctrl + alt + F1进入字符界面 1. 删除原有驱动 2. 安装依赖 3. 禁用nouveau驱动: 编辑 /etc/modprobe.d/blacklist nouveau.conf 文件,添加以下内容: 关闭nouveau: 4. reboot 重启后,执行:lsmod 阅读全文
posted @ 2018-08-06 16:10 pprp 阅读(24117) 评论(0) 推荐(2) 编辑
摘要: reference: "csdn" 必要依赖包安装 安装pip和easy install 安装caffe及python依赖 编译caffe 在打开的Makefile.config文件中做如下修改; 1).将USE_CUDNN := 1取消注释; 2).INCLUDE_DIRS := $(PYTHON 阅读全文
posted @ 2018-08-05 18:39 pprp 阅读(219) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-06-28 08:09 pprp 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Array对象 小tips: 初始化 var course = new Array ("C++程序设计","HTML开发基础","数据库原理","计算机网络"); var course = ["C++程序设计","HTML开发基础","数据库原理","计算机网络"]; 属性和方法 length:数组 阅读全文
posted @ 2018-06-11 23:25 pprp 阅读(180) 评论(0) 推荐(0) 编辑
摘要: Javascript 正则表达式 创建 var 对象名 = /表达式/[flags,’gim’]);var 对象名 = new RegExp(表达式,’gim’); var regExp=/^http[s]?:\/\//; regExp=new RegExp(“^http[s]?:\/\/”,”gi 阅读全文
posted @ 2018-06-11 23:25 pprp 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 虚拟机 Ubuntu18.04 tensorflow cpu 版本 虚拟机VMware 配置: 20G容量,可扩充 2G内存,可扩充 网络采用NAT模式 平台:win10下的Ubuntu18.04 出现的问题 网络连接问题 在安装VMware以后,需要将其服务全部打开,正常连上网的应该是右上角出现三 阅读全文
posted @ 2018-06-10 10:56 pprp 阅读(3379) 评论(0) 推荐(0) 编辑
摘要: javascript 消息对话框 关键字 | 表9 1 JavaScript的关键字 | | | | | | | | | | | | break | case | catch | continue | default | | delete | do | else | finally | for | 阅读全文
posted @ 2018-06-04 21:25 pprp 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 标题 diff tags: Markdown 语言 categories: 技术 ​ flow st= start: 开始 e= end: 结束 op= operation: 操作 sub= subroutine: 子程序 cond= condition: 判断 io= inputoutput: 输 阅读全文
posted @ 2018-06-04 21:09 pprp 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 各大数据集网站 阅读全文
posted @ 2018-06-04 21:06 pprp 阅读(638) 评论(0) 推荐(0) 编辑
摘要: sickit learn库实现机器学习 [TOC] Iris数据集 借用matplotlib绘制散点图 iris.data 中四个值分别为:萼片的长宽,花瓣的长宽 萼片的图像分布 修改一下得到花瓣的数据图像 发现这样比较集中 主成分分解PCA K 近邻分类器 选用150中的140作为训练集,10作为 阅读全文
posted @ 2018-06-04 20:55 pprp 阅读(1129) 评论(0) 推荐(0) 编辑
摘要: Typora 配置说明 为了更好的使用markdown,解决markdown中不如Word的不便之处,对markdown编辑器Typora进行配置 [TOC] 贴图功能 1. 进入File 2. 进入Preference 3. 找到Images Insert 4. 勾选use relative pa 阅读全文
posted @ 2018-06-04 12:39 pprp 阅读(4566) 评论(0) 推荐(0) 编辑
摘要: python x[:] x[::]用法总结 总结一下: 无论是左边还是右边逗号都要靠近冒号: 如果冒号:的左边或者右边还有冒号,这时候就说明其中一个冒号代表的是范围(eg:1:5 从1到4) 如果冒号:左边或者右边没有任何东西,那么这时候代表全体 [a:b] 对a的改变是行的改变,对b的改变是队列的 阅读全文
posted @ 2018-06-02 22:42 pprp 阅读(21265) 评论(0) 推荐(1) 编辑
摘要: author:pprp Matplotlib数据可视化 [TOC] 安装 conda install matplotlib sudo apt get install python matplotlib 架构 1. scripting 2. Artist 3. backend Backend层 Fig 阅读全文
posted @ 2018-06-02 20:34 pprp 阅读(3103) 评论(0) 推荐(0) 编辑
摘要: 深入pandas 数据处理 三个阶段 数据准备 数据转化 数据聚合 数据准备 加载 组装 合并 pandas.merge() 拼接 pandas.concat() 组合 pandas.DataFrame.combine_first() 变形 删除 合并 example1: 有必要定义合并操作的标准 阅读全文
posted @ 2018-06-02 20:33 pprp 阅读(703) 评论(0) 推荐(0) 编辑
摘要: Pandas 安装 anaconda 安装: conda list pandas 查看是否已经安装 conda install pandas conda update pandas pip 安装 pip install pandas apt 安装 sudo apt get install pytho 阅读全文
posted @ 2018-06-01 23:16 pprp 阅读(562) 评论(0) 推荐(0) 编辑
摘要: numpy 库 ndarray : numpy 的关键 a = np.array([1,2,3]) 轴 a.ndim 数组长度 a.size 数组的型 a.shape 类型 a.dtype 创建数组 a = np.array([1,2,3],[2,3,4]) b = np.array((1,2,3) 阅读全文
posted @ 2018-06-01 23:15 pprp 阅读(215) 评论(0) 推荐(0) 编辑
摘要: Caffee 安装过程 1.安装依赖包 2.安装caffe 3.编译caffe 在Makefile.config文件中把CPU_ONLY := 1的注释给去掉,就是去掉前面的 号 接下来在caffe根目录下执行下面命令 在这个命令后,我遇到了一个报错信息, 这是hdf5路径问题造成的,可以通过下面命 阅读全文
posted @ 2018-06-01 14:50 pprp 阅读(1559) 评论(0) 推荐(1) 编辑
摘要: 比较好的学习网站 "论文收集 github.io" "动手学深度学习" "深度学习速成课" "Caffe官方教程中译本_CaffeCN社区翻译(caffecn.cn).pdf" .pdf) "深度学习Caffe系列教程集合" "Tensorflow中文社区" "莫烦Tensorflow教程" "Yo 阅读全文
posted @ 2018-04-19 15:47 pprp 阅读(926) 评论(0) 推荐(0) 编辑
摘要: 论文 查询接受率的网站:https://www.openresearch.org/wiki/Main_Page LaTeX 图片转代码!! 点这里mathF https://web.baimiaoapp.com/image-to-latex 目标检测标注原则 https://www.cnblogs. 阅读全文
posted @ 2018-04-19 10:16 pprp 阅读(1342) 评论(0) 推荐(0) 编辑
摘要: Faster rcnn 在Linux下的配置方法 感谢@邓学长 建立过程: (下载库的时候要按照库readme 进行操作) opencv 的包下载安装, "安装教程" 用git命令将这个库下载到本地 "faster rcnn" 在py3.5下安装 安装anaconda(可以考虑改一下源,下载比较快, 阅读全文
posted @ 2018-04-07 10:16 pprp 阅读(968) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页