【发布时间】:2017-03-28 11:41:35
【问题描述】:
有没有办法重新训练 Open Images 预训练的 inception v3 模型https://github.com/openimages/dataset?
这是我尝试过的:
1. Inception方法https://github.com/tensorflow/models/tree/master/inception,但是它产生了一个错误“Tensor name "conv1/BatchNorm/beta" not found in checkpoint files /datavol/home/ec2-user/tensorflow/models/inception/inception-v3-model/inception -v3/model.ckpt”,其中 model.ckpt 是 Open Images 模型检查点。
2. 阅读 tensorflow-for-poets 教程,但需要有这些文件:classify_image_graph_def.pb,
imagenet_synset_to_human_label_map.txt,和
imagenet_2012_challenge_label_map_proto.pbtxt,而我只有model.ckpt和model.ckpt.meta。
任何帮助将不胜感激!
【问题讨论】:
-
TensorFlow for Poets 教程codelabs.developers.google.com/codelabs/tensorflow-for-poets.
-
对于1),你加载的checkpoint是和graph兼容的吗?
-
@Fake,如何确保我的检查点与图表兼容?
标签: dataset tensorflow