【发布时间】:2021-12-18 16:26:52
【问题描述】:
如何从 Tensorflow Model Zoo 2 中了解哪些层被冻结微调检测模型?
我已经成功设置了 Fine_tune_checkpoint 和 fine_tune_checkpoint_type: detection 的路径,并且在文件 proto 中我已经阅读了“检测”的意思
// 2. "detection": Restores the entire feature extractor.
The only parts of the full detection model that are not restored are the box and class prediction heads.
This option is typically used when you want to use a pre-trained detection model
and train on a new dataset or task which requires different box and class prediction heads.
我真的不明白这是什么意思。在这种情况下,恢复意味着冻结?
【问题讨论】:
标签: tensorflow object-detection