美文网首页
Tensorflow/models 中的 object_dete

Tensorflow/models 中的 object_dete

作者: 默_af2a | 来源:发表于2019-03-29 20:07 被阅读0次

    谷歌维护的与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文件是训练时生成的。当进行模型的初步训练时,该文件还不存在。推测该项应当供模型微调时使用。

    相关文章

      网友评论

          本文标题:Tensorflow/models 中的 object_dete

          本文链接:https://www.haomeiwen.com/subject/ycmrbqtx.html