【发布时间】:2019-03-15 09:01:25
【问题描述】:
我遵循了这个tutorial 来实现 Tensorflow 对象检测 API。
首选方法是使用预训练模型。
但在某些情况下,我们需要从头开始训练。
为此,我们只需将配置文件中的两行注释为
#fine_tune_checkpoint: "object_detection/data/mobilenet_v1_1.0_224/mobilenet_v1_1.0_224.ckpt"
#from_detection_checkpoint: true
如果我想用 Xavier 权重初始化来初始化权重,我该怎么做?
【问题讨论】:
标签: tensorflow object-detection-api