上一页 1 ··· 8 9 10 11 12 13 下一页

2017年7月28日

python遍历文件夹

摘要: import os def list_dir_files(dir_abs): allfiles = [] for root,dirs,files in os.walk(dir_abs): print('-----------------------------------') print('root:', root) print(... 阅读全文

posted @ 2017-07-28 11:40 蚂蚁flow 阅读(118) 评论(0) 推荐(0) 编辑

2017年7月27日

把cifar数据转换为图片

摘要: 参考 https://gist.github.com/fzliu/64821d31816bce595a4bbd98588b37f5 阅读全文

posted @ 2017-07-27 17:28 蚂蚁flow 阅读(518) 评论(0) 推荐(0) 编辑

cifar数据集下载

摘要: https://www.cs.toronto.edu/~kriz/cifar.html 阅读全文

posted @ 2017-07-27 16:11 蚂蚁flow 阅读(745) 评论(0) 推荐(0) 编辑

ILSVRC2012下载

摘要: http://www.image-net.org/challenges/LSVRC/2012/nnoupb/ILSVRC2012_img_test.tarhttp://www.image-net.org/challenges/LSVRC/2012/nnoupb/ILSVRC2012_img_val. 阅读全文

posted @ 2017-07-27 13:56 蚂蚁flow 阅读(3917) 评论(1) 推荐(0) 编辑

查看opencv-python编译信息

摘要: python -c "import cv2; print(cv2.getBuildInformation())" 阅读全文

posted @ 2017-07-27 11:32 蚂蚁flow 阅读(666) 评论(0) 推荐(0) 编辑

2017年7月26日

tensorflow训练Oxford-IIIT Pets

摘要: 参考链接https://github.com/tensorflow/models/blob/master/object_detection/g3doc/running_pets.md 先参考https://github.com/tensorflow/models/blob/master/object 阅读全文

posted @ 2017-07-26 14:57 蚂蚁flow 阅读(880) 评论(0) 推荐(0) 编辑

2017年7月25日

人人都可以做深度学习应用:入门篇

摘要: https://zhuanlan.zhihu.com/p/25381420 阅读全文

posted @ 2017-07-25 19:15 蚂蚁flow 阅读(147) 评论(0) 推荐(0) 编辑

tensorflow函数解析: tf.Session() 和tf.InteractiveSession()

摘要: 链接如下: http://stackoverflow.com/questions/41791469/difference-between-tf-session-and-tf-interactivesession 英文 Question: Questions says everything, for 阅读全文

posted @ 2017-07-25 15:09 蚂蚁flow 阅读(457) 评论(0) 推荐(0) 编辑

tensorflow函数解析:Session.run和Tensor.eval

摘要: 原问题链接: http://stackoverflow.com/questions/33610685/in-tensorflow-what-is-the-difference-between-session-run-and-tensor-eval 译: 问题: tensorflow有两种方式:Ses 阅读全文

posted @ 2017-07-25 15:07 蚂蚁flow 阅读(1368) 评论(0) 推荐(0) 编辑

Tensorflow函数——tf.set_random_seed(seed)

摘要: 设置图级随机seed。 依赖于随机seed的操作实际上从两个seed中获取:图级和操作级seed。 这将设置图级别的seed。 其与操作级seed的相互作用如下: 1.如果没有设置图形级别和操作seed,则使用随机seed进行操作。 2.如果设置了图级seed,但操作seed没有设置:系统确定性地选 阅读全文

posted @ 2017-07-25 15:01 蚂蚁flow 阅读(10754) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 下一页

导航