1.多线程
参考:https://blog.csdn.net/qq_14845119/article/details/79028094
2.mult-gpu
参考:https://github.com/vahidk/EffectiveTensorflow#multi_gpu
3.tfrecod制作
问题
问题1:tensorflow环境中经常遇到’*’ has type str, but expected one of: bytes问题的解决
https://blog.csdn.net/sparkexpert/article/details/70230072
具体修改如下:即在’jpg’前面加一个字母:b,即代表以字节的方式来进行处理。
example = dataset_utils.image_to_tfexample(image_data, b'jpg', height, width, class_id)
tfrecord_writer.write(example.SerializeToString())