JPEG to Tfrecord
tensorflow 在resnet50等模型上都用了imagnet的数据集tfrecord格式
这个tfrecord格式的数据集是通过脚本从jpeg格式转换过来的:
https://github.com/tensorflow/models/blob/master/research/inception/inception/data/build_imagenet_data.py
关键有一行代码:
Tfrecord to Jpeg
脚本在运行data_sess读到图片之后
np_images的shape应该是n,224,224,3
n就是batchsize
类别对应的具体类型查询
比如np_labels的值在脚本里面打印出来是998
在这个地方去搜:
https://blog.csdn.net/weixin_41770169/article/details/80482942
但是数字要减一(998-1=997) 对应的类别就是bolete