我想向 coco 数据集(90 个类)添加一个新类(例如:Handgun),以便检测 91 个不同的类。
我有这个:
数据集: 300 张关于手枪的图像
标签映射.pbtxt:
item {
id: 1
name: 'Handgun'
}
管道配置:
num_classes: 1
fine_tune_checkpoint: "/media/Shared/faster_rcnn_resnet101_coco_2018_01_28/model.ckpt"
from_detection_checkpoint: true
load_all_detection_checkpoint_vars: true
可能的解决方案:更改num_classes: 1
为num_classes: 90+1
?
非常感谢你回答我。