Closed EvW1998 closed 1 week ago
我也遇到了同样的问题,然后自己下载一个json文件放在那里就好了,官方文档确实不太友好
而且,TMD,直接运行train 也不行,需要自己手动下载dota 或者coco数据集放在那里,我都无法快速验证配的环境能不能训练和导出
我也遇到了同样的问题,然后自己下载一个json文件放在那里就好了,官方文档确实不太友好
请问下载链接是什么?在哪能看到?
我也遇到了同样的问题,然后自己下载一个json文件放在那里就好了,官方文档确实不太友好
请问下载链接是什么?在哪能看到?
instances_val2017.json 应该是这个,你随便跟网上的开源数据集平台上找也能找到的
我也遇到了同样的问题,然后自己下载一个json文件放在那里就好了,官方文档确实不太友好
请问下载链接是什么?在哪能看到?
instances_val2017.json 应该是这个,你随便跟网上的开源数据集平台上找也能找到的
谢谢,可以了。
我在configs/ppyolo/ppyolo_r50vd_dcn_1x_coco.yml
看到
_BASE_: [
'../datasets/coco_detection.yml',
'../runtime.yml',
'./_base_/ppyolo_r50vd_dcn.yml',
'./_base_/optimizer_1x.yml',
'./_base_/ppyolo_reader.yml',
]
snapshot_epoch: 16
weights: output/ppyolo_r50vd_dcn_1x_coco/model_final
然后去../datasets/coco_detection.yml
中看到
metric: COCO
num_classes: 80
TrainDataset:
name: COCODataSet
image_dir: train2017
anno_path: annotations/instances_train2017.json
dataset_dir: dataset/coco
data_fields: ['image', 'gt_bbox', 'gt_class', 'is_crowd']
EvalDataset:
name: COCODataSet
image_dir: val2017
anno_path: annotations/instances_val2017.json
dataset_dir: dataset/coco
allow_empty: true
TestDataset:
name: ImageFolder
anno_path: annotations/instances_val2017.json # also support txt (like VOC's label_list.txt)
dataset_dir: dataset/coco # if set, anno_path will be 'dataset_dir/anno_path'
原来是在这里用了instances_train2017.json
,你说可以在开源数据集平台上能找到,是Hugging Face或魔搭吗(我是新手,只知道这两个,还是说还有其他的)?我在这里看到了annotations_trainval2017.zip,下载后里面有instances_train2017.json
,也可以用,但比你的大得多,有什么区别?
我也遇到了同样的问题,然后自己下载一个json文件放在那里就好了,官方文档确实不太友好
请问下载链接是什么?在哪能看到?
instances_val2017.json 应该是这个,你随便跟网上的开源数据集平台上找也能找到的
谢谢,可以了。 我在
configs/ppyolo/ppyolo_r50vd_dcn_1x_coco.yml
看到_BASE_: [ '../datasets/coco_detection.yml', '../runtime.yml', './_base_/ppyolo_r50vd_dcn.yml', './_base_/optimizer_1x.yml', './_base_/ppyolo_reader.yml', ] snapshot_epoch: 16 weights: output/ppyolo_r50vd_dcn_1x_coco/model_final
然后去
../datasets/coco_detection.yml
中看到metric: COCO num_classes: 80 TrainDataset: name: COCODataSet image_dir: train2017 anno_path: annotations/instances_train2017.json dataset_dir: dataset/coco data_fields: ['image', 'gt_bbox', 'gt_class', 'is_crowd'] EvalDataset: name: COCODataSet image_dir: val2017 anno_path: annotations/instances_val2017.json dataset_dir: dataset/coco allow_empty: true TestDataset: name: ImageFolder anno_path: annotations/instances_val2017.json # also support txt (like VOC's label_list.txt) dataset_dir: dataset/coco # if set, anno_path will be 'dataset_dir/anno_path'
原来是在这里用了
instances_train2017.json
,你说可以在开源数据集平台上能找到,是Hugging Face或魔搭吗(我是新手,只知道这两个,还是说还有其他的)?我在这里看到了annotations_trainval2017.zip,下载后里面有instances_train2017.json
,也可以用,但比你的大得多,有什么区别?
我也是新手,没有仔细看,我发现它能跑然后就停掉去跑yolov11了
The issue has no response for a long time and will be closed. You can reopen or new another issue if are still confused.
问题确认 Search before asking
请提出你的问题 Please ask your question
我在运行快速体验中的推理代码
python tools/infer.py -c configs/ppyolo/ppyolo_r50vd_dcn_1x_coco.yml -o use_gpu=true weights=https://paddledet.bj.bcebos.com/models/ppyolo_r50vd_dcn_1x_coco.pdparams --infer_img=demo/000000014439.jpg
时发生了错误。提示
No such file or directory: 'dataset/coco/annotations/instances_val2017.json'
为什么推理还需要下载标注文件呢?