上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页
摘要: 更新:2018-04-2713:25:25 其实直接用shuf就行: linux 删除文件的前几行 sed -i '1,10d' file grep --color :高亮查询关键字grep -A 10 xxx : 显示关键字后10行,查异常栈时很有用grep -B 10 xxx : 显示关键字前1 阅读全文
posted @ 2018-04-24 10:11 hozhangel 阅读(3560) 评论(0) 推荐(0) 编辑
摘要: 批量重命名文件: 1) 有一批文件,以.bak结尾,现在想把这些.bak 统统去掉。 2) 把所有文件名内含有大小字母的,修改为小写字母。 和sed的替换语法一样 输出开头包含energy的行数 输出开头包含energy的行在第几行,并显示内容: 以分隔符分割文件每行并 取输出分隔符左边内容 取两个 阅读全文
posted @ 2018-04-03 16:18 hozhangel 阅读(174) 评论(0) 推荐(0) 编辑
摘要: https://github.com/facebookresearch/fastText 安装过程在官网上有详细说明, 1、只能在Linux 或 Mac os上使用 2、单独安装,或者作为Python包安装 注意: 1、Linux上安装fasttext时,如果用pip会报错, ImportError 阅读全文
posted @ 2018-03-08 11:45 hozhangel 阅读(3651) 评论(0) 推荐(0) 编辑
摘要: tf.nn.conv2d 参数列表: 参数名 必选 类型 说明 input 是 tensor 是一个 4 维的 tensor,即 [ batch, in_height, in_width, in_channels ](若 input 是图像,[ 训练时一个 batch 的图片数量, 图片高度, 图片 阅读全文
posted @ 2018-02-24 10:52 hozhangel 阅读(704) 评论(0) 推荐(0) 编辑
摘要: tf.conv2d 然后执行: cd /home/ubuntu; python conv2d.py cd /home/ubuntu; python conv2d.py 执行结果: c shape: (1, 3, 3, 1) c value: [[[[ 4.] [ 3.] [ 4.]] [[ 2.] 阅读全文
posted @ 2018-02-24 10:18 hozhangel 阅读(1112) 评论(0) 推荐(0) 编辑
摘要: 下载的是VMware Workstation(密匙:http://www.zdfans.com/5928.html) 创建虚拟机 还需要镜像ios下载 http://releases.ubuntu.com/16.04.3/ubuntu-16.04.3-desktop-i386.iso (从http: 阅读全文
posted @ 2018-01-15 14:43 hozhangel 阅读(316) 评论(0) 推荐(0) 编辑
摘要: tf.reduce_mean() (或tf.reduce_max()一个是求平均值,一个是求最大值) tf.contrib.rnn.BasicRnnCell tf.contrib.rnn.BasicLSTMCell tf.reshape() 阅读全文
posted @ 2017-12-26 12:07 hozhangel 阅读(2512) 评论(0) 推荐(0) 编辑
摘要: 参数列表: 参数名 必选 类型 说明 input 是 tensor 是一个 4 维的 tensor,即 [ batch, in_height, in_width, in_channels ](若 input 是图像,[ 训练时一个 batch 的图片数量, 图片高度, 图片宽度, 图像通道数 ]) 阅读全文
posted @ 2017-12-21 15:43 hozhangel 阅读(278) 评论(0) 推荐(0) 编辑
摘要: $python >>>import tensorflow as tf >>>tf.__version__ #查询tensorflow安装路径为: >>>tf.__path__ 阅读全文
posted @ 2017-12-21 15:37 hozhangel 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 参考网址:https://my.oschina.net/fengcunhan/blog/101281 http://www.cnblogs.com/geniferology/p/what_is_kNN_algorithm.html 距离算法也有很多种,可以选择一种即可。。 训练集&测试集特点(最后一 阅读全文
posted @ 2017-12-20 14:26 hozhangel 阅读(296) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页