谷歌维护的与Tensorflow配套的models源码库包含了大量前沿算法实践。
在调用 object_detection/model_main.py
时可能会遇到以下错误:
tensorflow.python.framework.errors_impl.NotFoundError: Unsuccessful TensorSliceReader constructor: Failed to find any matching files for ???/model.ckpt
model.ckpt
这个文件似乎只在.config
文件中见到:
如在
object_detection/samples/configs/ssd_mobilenet_v2_coco.config
中有:fine_tune_checkpoint: "PATH_TO_BE_CONFIGURED/model.ckpt"
fine_tune_checkpoint_type: "detection"
fine_tune_checkpoint
:此处应该为空白,否则会导致无法训练的情况。(参考这里)
即:
fine_tune_checkpoint: ""
fine_tune_checkpoint_type: "detection"
.ckpt文件是训练时生成的。当进行模型的初步训练时,该文件还不存在。推测该项应当供模型微调时使用。
网友评论