DATASET 范围
1. PASCAL VOC DATASET 目录结构讲解
https://blog.csdn.net/qq_39938666/article/details/89511383
── VOCdevkit#根目录
└── VOC2012#不同年份的数据集,这里只下载了2012的,还有2007等其它年份的
├── Annotations#存放xml文件,与JPEGImages中的图片一一对应,解释图片的内容等等
├── ImageSets#该目录下存放的都是txt文件,txt文件中每一行包含一个图片的名称,末尾会加上±1表示正负样本
│ ├── Action
│ ├── Layout
│ ├── Main
│ └── Segmentation
├── JPEGImages#存放源图片
├── SegmentationClass#存放的是图片,分割后的效果,见下文的例子
2. tf.gfile包
提供了一个接近python文件对象处理的API集。
https://blog.csdn.net/a373595475/article/details/79693430
3.
sys.stdout.flush()
https://blog.csdn.net/Just_youHG/article/details/102591313
4. python threading模块
https://zhuanlan.zhihu.com/p/46368084
5. TFRecords
YJango-- TensorFlow中层API:Datasets+TFRecord的数据导入
https://zhuanlan.zhihu.com/p/33223782
https://blog.csdn.net/qq_27825451/article/details/105074522 ( 重要,讲解了TFRecords文件)
6. 使用dataset创建INPUT PIPELINE(重要)
https://blog.csdn.net/neu_chenguangq/article/details/79590537
https://blog.csdn.net/qq_27825451/article/details/90739257
https://tensorflow.google.cn/api_docs/python/tf/data/Dataset
https://www.sohu.com/a/203538050_610300
https://zhuanlan.zhihu.com/p/37106443
https://zhuanlan.zhihu.com/p/37586029
https://www.cnblogs.com/yaos/p/12757972.html
https://blog.csdn.net/woniu201411/article/details/89249689
日志系统
python日志系统
https://blog.csdn.net/qq_27825451/article/details/106573640
tensorflow logging模块
图像处理
tf.image模块
https://blog.csdn.net/qq_43225437/article/details/88018408
Tensorflow controlflow 模块
http://www.mamicode.com/info-detail-2453462.html
感受野的计算好文
https://www.cnblogs.com/shine-lee/p/12069176.html
网友评论