上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: 定时:at 00:00 shutdown -s //在00:00时关机 倒计时:shutdown -s -t 3600 //3600s后关机 取消:shutdown -a 阅读全文
posted @ 2016-05-29 09:11 linux_zero 阅读(157) 评论(0) 推荐(0)
摘要: #!python"""Bootstrap setuptools installation If you want to use setuptools in your package's setup.py, just include thisfile in the same directory wit 阅读全文
posted @ 2016-05-28 19:54 linux_zero 阅读(6382) 评论(0) 推荐(0)
摘要: 安装easy_install: 下载ez_setup.py文件,命令行执行python ez_setup.py; 将python文件夹下的Scripts文件夹加入到系统path路径; 检查easy_install可以在命令行执行:easy_install --version; 之后安装库则可在命令行 阅读全文
posted @ 2016-05-28 19:52 linux_zero 阅读(462) 评论(0) 推荐(0)
摘要: 进入文件夹:cd 文件夹名 列出文件列表:dir 清屏:cls 阅读全文
posted @ 2016-05-28 17:25 linux_zero 阅读(166) 评论(0) 推荐(0)
摘要: 1:首先去python网站下载安装包:https://www.python.org/downloads/,注意自己的系统版本 2:在自己指定目录安装即可; 3:将python路径加入PATH环境变量: windows设置方法:右键我的电脑,属性;高级系统设置,高级,环境变量;在系统变量中选path, 阅读全文
posted @ 2016-05-26 13:44 linux_zero 阅读(302) 评论(0) 推荐(0)
摘要: find -name *.jpeg |cut -d '/' -f2-3> train.txt(图片在当前文件夹) find train/dog -name *.JPEG |cut -d '/' -f2-3 >train.txt(假设图片在train/dog文件夹)如果出错提示:find: 路径必须在 阅读全文
posted @ 2016-05-23 12:43 linux_zero 阅读(369) 评论(0) 推荐(0)
摘要: for name in /图片路径; do convert -resize 256x256! $name $namedone 阅读全文
posted @ 2016-05-23 12:36 linux_zero 阅读(324) 评论(0) 推荐(0)
摘要: 下载caffe-local,解压缩; 修改makefile.config:我是将cuudn注释掉,去掉cpu_only的注释; make all make test(其中local_test出错,将文件中gpu部分注释掉即可) make runtest 将python路径在.bashrc中更改: e 阅读全文
posted @ 2016-05-22 21:31 linux_zero 阅读(343) 评论(0) 推荐(0)
摘要: make pycaffe 在python中import caffe 阅读全文
posted @ 2016-05-22 21:06 linux_zero 阅读(226) 评论(0) 推荐(0)
摘要: 比如现在要添加一个vision layer,名字叫Ly_Layer:(一般命名第一个字母大写,其余小写。) 1、属于哪个类型的layer(共五种:common_layer, data_layer, loss_layer, neuron_layer, vision_layer ),就打开哪个 hpp文 阅读全文
posted @ 2016-05-22 16:44 linux_zero 阅读(5697) 评论(0) 推荐(0)
摘要: 查看自己系统版本: 使用命令:cat /proc/version 查看:proc目录下记录的当前系统运行的各种数据,version记录的版本信息可以直接通过cat查看到,还可以看到我的gcc版本呢。 使用命令:uname -a 查看:显示自己的内核版本 使用命令:lsb_release -a 查看 阅读全文
posted @ 2016-05-21 20:02 linux_zero 阅读(123) 评论(0) 推荐(0)
摘要: 由于ubuntu系统默认是没有激活root用户的,需要手动激活: 终端下输入: sudo passwd Password:你当前的密码 Enter new UNIX password:这个是root的密码 Retype new UNIX password:重复root的密码 即可成功。 注:使用su 阅读全文
posted @ 2016-05-21 19:50 linux_zero 阅读(2888) 评论(0) 推荐(0)
摘要: 软碟通(UltraISO)制作u盘启动器: 格式化后,写入硬盘镜像。 电脑设置开机优先启动项: 方正: 开机点Del进入BIOS; 进入Advanced BIOS Features; 选择First Boot Device,根据需要选择USB-HDD,USB-ZIP,USB-FDD等; 退出即可。 阅读全文
posted @ 2016-05-21 16:29 linux_zero 阅读(179) 评论(0) 推荐(0)
摘要: zip: 解压:unzip filename 解压到tmp文件夹:unzip filename.zip -d /tmp 查看压缩文件而不解压:unzip filename.zip -v tar.gz: 解压:tar -zxvf filename.tar.gz 解压到指定文件夹:tar -zxvf . 阅读全文
posted @ 2016-05-20 19:55 linux_zero 阅读(951) 评论(0) 推荐(0)
摘要: u盘中文件格式通常为FAT32,需要转换为NTFS格式 在win7中cmd调出命令行,输入: convert H: /fs:ntfs (H为u盘位置) 阅读全文
posted @ 2016-05-20 19:45 linux_zero 阅读(471) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 下一页