Closed DavidFangx closed 4 years ago
@DavidFangx 不需要增加新的分类。可以直接使用COCO训练出来的模型作为预训练模型,训练"头盔的检测" ,参考,https://github.com/PaddlePaddle/PaddleDetection/blob/release/0.2/docs/advanced_tutorials/TRANSFER_LEARNING_cn.md 。
会自动不加在 包含类别 的参数,迁移学习训练对应的层。
你好," 会自动不加在 包含类别 的参数,迁移学习训练对应的层。" 没理解,请明示下,谢谢
@DavidFangx 参考这里https://github.com/PaddlePaddle/PaddleDetection/blob/release/0.2/docs/advanced_tutorials/TRANSFER_LEARNING_cn.md#paddledetection%E8%BF%9B%E8%A1%8C%E8%BF%81%E7%A7%BB%E5%AD%A6%E4%B9%A0
您用的是YOLOv3模型,可以通过命令行,设置下 -o finetune_exclude_pretrained_params=yolo_output
, yolo_output这个weight的shape和类别数相关,当你换了数据、类别数改变之后,这层的参数不需要加载,设置下就行。
你好,关于数据集, 继续使用coco 数据集,然后把自定义的头盔数据集与coco数据集合并成一个json文件,
问题 1) 配置文件 num_classes: 80 这个参数需要 改为 num_classes: 81 吗?
2) 合并前与合并后训练,日志统计 2020-04-15 18:35:47,635-INFO: 118287 samples in file dataset/coco\annotations/instances_train2017.json ,打印出的 118287 samples 却是相同,个人理解应该是 118287 + 155 (新增的头盔图片数) = 118442
问题 3) 没有合并自定义的头盔数据集,能正常训练,在yml 里 加了 finetune_exclude_pretrained_params: ['yolo_output'] 参数, 好像不在训练,控制台没有训练结果输出 ....
一)配置文件,部分参数,其他参数没有调整 architecture: YOLOv3 use_gpu: true max_iters: 500200 log_smooth_window: 20 save_dir: output snapshot_iter: 2000 metric: COCO pretrain_weights: https://paddle-imagenet-models-name.bj.bcebos.com/DarkNet53_pretrained.tar weights: output/yolov3_darknet/model_final num_classes: 80 finetune_exclude_pretrained_params: ['yolo_output'] # 新加参数 ,其他参数不变 use_fine_grained_loss: false
二)控制台输出: (PP_GPU) D:\python3\workspace\PaddleDetection>python tools/train.py -c configs/yolov3_darknet.yml DarkNet: [32mnorm_type[0m: sync_bn depth: 53 norm_decay: 0.0 weight_prefix_name: '' EvalReader: batch_size: 8 bufsize: 32 dataset: !COCODataSet anno_path: annotations/instances_val2017.json dataset_dir: dataset/coco image_dir: val2017 sample_num: -1 with_background: false drop_empty: false inputs_def: fields:
W0415 19:04:50.731580 20672 device_context.cc:237] Please NOTE: device: 0, CUDA Capability: 75, Driver API Version: 10.2, Runtime API Version: 10.0 W0415 19:04:50.749580 20672 device_context.cc:245] device: 0, cuDNN Version: 7.6. 2020-04-15 19:04:52,395-INFO: Found C:\Users\Administrator/.cache/paddle/weights\DarkNet53_pretrained 2020-04-15 19:04:52,395-INFO: Loading parameters from C:\Users\Administrator/.cache/paddle/weights\DarkNet53_pretrained... 2020-04-15 19:04:53,268-WARNING: C:\Users\ADMINI~1\AppData\Local\Temp\tmpkddskat8\DarkNet53_pretrained.pdparams not found, try to load model file saved with [ save_params, save_persistables, save_vars ] 2020-04-15 19:04:53,268-WARNING: C:\Users\ADMINI~1\AppData\Local\Temp\tmpkddskat8\DarkNet53_pretrained.pdparams not found, try to load model file saved with [ save_params, save_persistables, save_vars ] loading annotations into memory... Done (t=20.39s) creating index... index created! 2020-04-15 19:05:16,391-INFO: 118287 samples in file dataset/coco\annotations/instances_train2017.json 2020-04-15 19:05:16,417-INFO: Use multi-thread reader instead of multi-process reader on Windows. 2020-04-15 19:05:16,418-INFO: places would be ommited when DataLoader is not iterable I0415 19:05:16.442224 20672 parallel_executor.cc:440] The Program will be executed on CUDA using ParallelExecutor, 1 cards are used, so 1 programs are executed in parallel. I0415 19:05:16.493227 20672 build_strategy.cc:365] SeqOnlyAllReduceOps:0, num_trainers:1 I0415 19:05:16.606226 20672 parallel_executor.cc:307] Inplace strategy is enabled, when build_strategy.enable_inplace = True I0415 19:05:16.632226 20672 parallel_executor.cc:375] Garbage collection strategy is enabled, when FLAGS_eager_delete_tensor_gb = 0
数据集合并过程: 新加的155张图片已复制到 coco\train2017 目录下 ,同时把下面新增的头盔标注 json 插入到 coco 自带的 instances_train2017.json里,并在 instances_train2017.json的 categories 后面添加头盔类别了 {"supercategory": "indoor","id": 91,"name": "helmet"} :
{"license": 3, "url": null, "file_name": "Helmet0001.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500000}, {"license": 3, "url": null, "file_name": "Helmet0002.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500001}, {"license": 3, "url": null, "file_name": "Helmet0003.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500002}, {"license": 3, "url": null, "file_name": "Helmet0004.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500003}, {"license": 3, "url": null, "file_name": "Helmet0005.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500004}, {"license": 3, "url": null, "file_name": "Helmet0006.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500005}, {"license": 3, "url": null, "file_name": "Helmet0007.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500006}, {"license": 3, "url": null, "file_name": "Helmet0008.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500007}, {"license": 3, "url": null, "file_name": "Helmet0009.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500008}, {"license": 3, "url": null, "file_name": "Helmet0010.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500009}, {"license": 3, "url": null, "file_name": "Helmet0011.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500010}, {"license": 3, "url": null, "file_name": "Helmet0012.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500011}, {"license": 3, "url": null, "file_name": "Helmet0013.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500012}, {"license": 3, "url": null, "file_name": "Helmet0014.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500013}, {"license": 3, "url": null, "file_name": "Helmet0015.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500014}, {"license": 3, "url": null, "file_name": "Helmet0016.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500015}, {"license": 3, "url": null, "file_name": "Helmet0017.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500016}, {"license": 3, "url": null, "file_name": "Helmet0018.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500017}, {"license": 3, "url": null, "file_name": "Helmet0019.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500018}, {"license": 3, "url": null, "file_name": "Helmet0020.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500019}, {"license": 3, "url": null, "file_name": "Helmet0021.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500020}, {"license": 3, "url": null, "file_name": "Helmet0022.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500021}, {"license": 3, "url": null, "file_name": "Helmet0023.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500022}, {"license": 3, "url": null, "file_name": "Helmet0024.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500023}, {"license": 3, "url": null, "file_name": "Helmet0025.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500024}, {"license": 3, "url": null, "file_name": "Helmet0026.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500025}, {"license": 3, "url": null, "file_name": "Helmet0027.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500026}, {"license": 3, "url": null, "file_name": "Helmet0028.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500027}, {"license": 3, "url": null, "file_name": "Helmet0029.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500028}, {"license": 3, "url": null, "file_name": "Helmet0030.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500029}, {"license": 3, "url": null, "file_name": "Helmet0031.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500030}, {"license": 3, "url": null, "file_name": "Helmet0032.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500031}, {"license": 3, "url": null, "file_name": "Helmet0033.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500032}, {"license": 3, "url": null, "file_name": "Helmet0034.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500033}, {"license": 3, "url": null, "file_name": "Helmet0035.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500034}, {"license": 3, "url": null, "file_name": "Helmet0036.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500035}, {"license": 3, "url": null, "file_name": "Helmet0037.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500036}, {"license": 3, "url": null, "file_name": "Helmet0038.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500037}, {"license": 3, "url": null, "file_name": "Helmet0039.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500038}, {"license": 3, "url": null, "file_name": "Helmet0040.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500039}, {"license": 3, "url": null, "file_name": "Helmet0041.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500040}, {"license": 3, "url": null, "file_name": "Helmet0042.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500041}, {"license": 3, "url": null, "file_name": "Helmet0043.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500042}, {"license": 3, "url": null, "file_name": "Helmet0044.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500043}, {"license": 3, "url": null, "file_name": "Helmet0045.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500044}, {"license": 3, "url": null, "file_name": "Helmet0046.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500045}, {"license": 3, "url": null, "file_name": "Helmet0047.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500046}, {"license": 3, "url": null, "file_name": "Helmet0048.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500047}, {"license": 3, "url": null, "file_name": "Helmet0049.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500048}, {"license": 3, "url": null, "file_name": "Helmet0050.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500049}, {"license": 3, "url": null, "file_name": "Helmet0051.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500050}, {"license": 3, "url": null, "file_name": "Helmet0052.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500051}, {"license": 3, "url": null, "file_name": "Helmet0053.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500052}, {"license": 3, "url": null, "file_name": "Helmet0054.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500053}, {"license": 3, "url": null, "file_name": "Helmet0055.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500054}, {"license": 3, "url": null, "file_name": "Helmet0056.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500055}, {"license": 3, "url": null, "file_name": "Helmet0057.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500056}, {"license": 3, "url": null, "file_name": "Helmet0058.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500057}, {"license": 3, "url": null, "file_name": "Helmet0059.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500058}, {"license": 3, "url": null, "file_name": "Helmet0060.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500059}, {"license": 3, "url": null, "file_name": "Helmet0061.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500060}, {"license": 3, "url": null, "file_name": "Helmet0062.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500061}, {"license": 3, "url": null, "file_name": "Helmet0063.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500062}, {"license": 3, "url": null, "file_name": "Helmet0064.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500063}, {"license": 3, "url": null, "file_name": "Helmet0065.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500064}, {"license": 3, "url": null, "file_name": "Helmet0066.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500065}, {"license": 3, "url": null, "file_name": "Helmet0067.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500066}, {"license": 3, "url": null, "file_name": "Helmet0068.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500067}, {"license": 3, "url": null, "file_name": "Helmet0069.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500068}, {"license": 3, "url": null, "file_name": "Helmet0070.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500069}, {"license": 3, "url": null, "file_name": "Helmet0071.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500070}, {"license": 3, "url": null, "file_name": "Helmet0072.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500071}, {"license": 3, "url": null, "file_name": "Helmet0073.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500072}, {"license": 3, "url": null, "file_name": "Helmet0074.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500073}, {"license": 3, "url": null, "file_name": "Helmet0075.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500074}, {"license": 3, "url": null, "file_name": "Helmet0076.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500075}, {"license": 3, "url": null, "file_name": "Helmet0077.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500076}, {"license": 3, "url": null, "file_name": "Helmet0078.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500077}, {"license": 3, "url": null, "file_name": "Helmet0079.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500078}, {"license": 3, "url": null, "file_name": "Helmet0080.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500079}, {"license": 3, "url": null, "file_name": "Helmet0081.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500080}, {"license": 3, "url": null, "file_name": "Helmet0082.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500081}, {"license": 3, "url": null, "file_name": "Helmet0083.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500082}, {"license": 3, "url": null, "file_name": "Helmet0084.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500083}, {"license": 3, "url": null, "file_name": "Helmet0085.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500084}, {"license": 3, "url": null, "file_name": "Helmet0086.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500085}, {"license": 3, "url": null, "file_name": "Helmet0087.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500086}, {"license": 3, "url": null, "file_name": "Helmet0088.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500087}, {"license": 3, "url": null, "file_name": "Helmet0089.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500088}, {"license": 3, "url": null, "file_name": "Helmet0090.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500089}, {"license": 3, "url": null, "file_name": "Helmet0091.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500090}, {"license": 3, "url": null, "file_name": "Helmet0092.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500091}, {"license": 3, "url": null, "file_name": "Helmet0093.jpg", "height": 304, "width": 304, "date_captured": null, "id": 202004152020041500092}, {"license": 3, "url": null, "file_name": "Helmet0094.jpg", "height": 400, "width": 416, "date_captured": null, "id": 202004152020041500093}, {"license": 3, "url": null, "file_name": "Helmet0095.jpg", "height": 252, "width": 320, "date_captured": null, "id": 202004152020041500094}, {"license": 3, "url": null, "file_name": "Helmet0096.jpg", "height": 164, "width": 192, "date_captured": null, "id": 202004152020041500095}, {"license": 3, "url": null, "file_name": "Helmet0097.jpg", "height": 560, "width": 640, "date_captured": null, "id": 202004152020041500096}, {"license": 3, "url": null, "file_name": "Helmet0098.jpg", "height": 436, "width": 448, "date_captured": null, "id": 202004152020041500097}, {"license": 3, "url": null, "file_name": "Helmet0099.jpg", "height": 348, "width": 352, "date_captured": null, "id": 202004152020041500098}, {"license": 3, "url": null, "file_name": "Helmet0100.jpg", "height": 464, "width": 480, "date_captured": null, "id": 202004152020041500099}, {"license": 3, "url": null, "file_name": "Helmet0101.jpg", "height": 408, "width": 416, "date_captured": null, "id": 202004152020041500100}, {"license": 3, "url": null, "file_name": "Helmet0102.jpg", "height": 176, "width": 160, "date_captured": null, "id": 202004152020041500101}, {"license": 3, "url": null, "file_name": "Helmet0103.jpg", "height": 364, "width": 416, "date_captured": null, "id": 202004152020041500102}, {"license": 3, "url": null, "file_name": "Helmet0104.jpg", "height": 372, "width": 352, "date_captured": null, "id": 202004152020041500103}, {"license": 3, "url": null, "file_name": "Helmet0105.jpg", "height": 336, "width": 384, "date_captured": null, "id": 202004152020041500104}, {"license": 3, "url": null, "file_name": "Helmet0106.jpg", "height": 240, "width": 288, "date_captured": null, "id": 202004152020041500105}, {"license": 3, "url": null, "file_name": "Helmet0107.jpg", "height": 132, "width": 112, "date_captured": null, "id": 202004152020041500106}, {"license": 3, "url": null, "file_name": "Helmet0108.jpg", "height": 256, "width": 288, "date_captured": null, "id": 202004152020041500107}, {"license": 3, "url": null, "file_name": "Helmet0109.jpg", "height": 368, "width": 384, "date_captured": null, "id": 202004152020041500108}, {"license": 3, "url": null, "file_name": "Helmet0110.jpg", "height": 432, "width": 432, "date_captured": null, "id": 202004152020041500109}, {"license": 3, "url": null, "file_name": "Helmet0111.jpg", "height": 208, "width": 192, "date_captured": null, "id": 202004152020041500110}, {"license": 3, "url": null, "file_name": "Helmet0112.jpg", "height": 200, "width": 224, "date_captured": null, "id": 202004152020041500111}, {"license": 3, "url": null, "file_name": "Helmet0113.jpg", "height": 452, "width": 480, "date_captured": null, "id": 202004152020041500112}, {"license": 3, "url": null, "file_name": "Helmet0114.jpg", "height": 208, "width": 224, "date_captured": null, "id": 202004152020041500113}, {"license": 3, "url": null, "file_name": "Helmet0115.jpg", "height": 456, "width": 480, "date_captured": null, "id": 202004152020041500114}, {"license": 3, "url": null, "file_name": "Helmet0116.jpg", "height": 248, "width": 384, "date_captured": null, "id": 202004152020041500115}, {"license": 3, "url": null, "file_name": "Helmet0117.jpg", "height": 328, "width": 384, "date_captured": null, "id": 202004152020041500116}, {"license": 3, "url": null, "file_name": "Helmet0118.jpg", "height": 264, "width": 320, "date_captured": null, "id": 202004152020041500117}, {"license": 3, "url": null, "file_name": "Helmet0119.jpg", "height": 308, "width": 352, "date_captured": null, "id": 202004152020041500118}, {"license": 3, "url": null, "file_name": "Helmet0120.jpg", "height": 468, "width": 512, "date_captured": null, "id": 202004152020041500119}, {"license": 3, "url": null, "file_name": "Helmet0121.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500120}, {"license": 3, "url": null, "file_name": "Helmet0122.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500121}, {"license": 3, "url": null, "file_name": "Helmet0123.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500122}, {"license": 3, "url": null, "file_name": "Helmet0124.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500123}, {"license": 3, "url": null, "file_name": "Helmet0125.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500124}, {"license": 3, "url": null, "file_name": "Helmet0126.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500125}, {"license": 3, "url": null, "file_name": "Helmet0127.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500126}, {"license": 3, "url": null, "file_name": "Helmet0128.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500127}, {"license": 3, "url": null, "file_name": "Helmet0129.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500128}, {"license": 3, "url": null, "file_name": "Helmet0130.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500129}, {"license": 3, "url": null, "file_name": "Helmet0131.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500130}, {"license": 3, "url": null, "file_name": "Helmet0132.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500131}, {"license": 3, "url": null, "file_name": "Helmet0133.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500132}, {"license": 3, "url": null, "file_name": "Helmet0134.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500133}, {"license": 3, "url": null, "file_name": "Helmet0135.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500134}, {"license": 3, "url": null, "file_name": "Helmet0136.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500135}, {"license": 3, "url": null, "file_name": "Helmet0137.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500136}, {"license": 3, "url": null, "file_name": "Helmet0138.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500137}, {"license": 3, "url": null, "file_name": "Helmet0139.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500138}, {"license": 3, "url": null, "file_name": "Helmet0140.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500139}, {"license": 3, "url": null, "file_name": "Helmet0141.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500140}, {"license": 3, "url": null, "file_name": "Helmet0142.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500141}, {"license": 3, "url": null, "file_name": "Helmet0143.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500142}, {"license": 3, "url": null, "file_name": "Helmet0144.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500143}, {"license": 3, "url": null, "file_name": "Helmet0145.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500144}, {"license": 3, "url": null, "file_name": "Helmet0146.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500145}, {"license": 3, "url": null, "file_name": "Helmet0147.jpg", "height": 176, "width": 224, "date_captured": null, "id": 202004152020041500146}, {"license": 3, "url": null, "file_name": "Helmet0148.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500147}, {"license": 3, "url": null, "file_name": "Helmet0149.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500148}, {"license": 3, "url": null, "file_name": "Helmet0150.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500149}, {"license": 3, "url": null, "file_name": "Helmet0151.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500150}, {"license": 3, "url": null, "file_name": "Helmet0152.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500151}, {"license": 3, "url": null, "file_name": "Helmet0153.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500152}, {"license": 3, "url": null, "file_name": "Helmet0154.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500153}, {"license": 3, "url": null, "file_name": "Helmet0155.jpg", "height": 1080, "width": 1920, "date_captured": null, "id": 202004152020041500154}], "type": "instances", "annotations": [{"id": 202004152020041500000, "image_id": 202004152020041500000, "category_id": 91, "segmentation": [[920.8292682926829, 240.6829268292683, 987.9024390243902, 276.04878048780483]], "area": 2516.0, "bbox": [920.0, 240.0, 68.0, 37.0], "iscrowd": 0}, {"id": 202004152020041500001, "image_id": 202004152020041500001, "category_id": 91, "segmentation": [[714.7317073170731, 674.8292682926829, 886.6829268292682, 791.9024390243902]], "area": 20414.0, "bbox": [714.0, 674.0, 173.0, 118.0], "iscrowd": 0}, {"id": 202004152020041500002, "image_id": 202004152020041500002, "category_id": 91, "segmentation": [[1225.7073170731705, 232.14634146341461, 1289.121951219512, 295.5609756097561]], "area": 4160.0, "bbox": [1225.0, 232.0, 65.0, 64.0], "iscrowd": 0}, {"id": 202004152020041500003, "image_id": 202004152020041500003, "category_id": 91, "segmentation": [[1394.0, 380.92682926829264, 1533.0243902439024, 445.56097560975604]], "area": 9240.0, "bbox": [1394.0, 380.0, 140.0, 66.0], "iscrowd": 0}, {"id": 202004152020041500004, "image_id": 202004152020041500004, "category_id": 91, "segmentation": [[1389.121951219512, 373.60975609756093, 1525.7073170731705, 437.0243902439024]], "area": 8905.0, "bbox": [1389.0, 373.0, 137.0, 65.0], "iscrowd": 0}, {"id": 202004152020041500005, "image_id": 202004152020041500005, "category_id": 91, "segmentation": [[1390.341463414634, 396.780487804878, 1534.2439024390242, 476.04878048780483]], "area": 11745.0, "bbox": [1390.0, 396.0, 145.0, 81.0], "iscrowd": 0}, {"id": 202004152020041500006, "image_id": 202004152020041500006, "category_id": 91, "segmentation": [[1404.9756097560974, 399.2195121951219, 1530.5853658536585, 466.29268292682923]], "area": 8636.0, "bbox": [1404.0, 399.0, 127.0, 68.0], "iscrowd": 0}, {"id": 202004152020041500007, "image_id": 202004152020041500007, "category_id": 91, "segmentation": [[976.9268292682926, 218.73170731707313, 1035.4634146341464, 261.4146341463414]], "area": 2640.0, "bbox": [976.0, 218.0, 60.0, 44.0], "iscrowd": 0}, {"id": 202004152020041500008, "image_id": 202004152020041500008, "category_id": 91, "segmentation": [[1030.5853658536585, 648.0, 856.1951219512194, 557.7560975609756]], "area": 16100.0, "bbox": [856.0, 557.0, 175.0, 92.0], "iscrowd": 0}, {"id": 202004152020041500009, "image_id": 202004152020041500009, "category_id": 91, "segmentation": [[820.8292682926829, 118.73170731707316, 853.7560975609755, 139.46341463414632]], "area": 748.0, "bbox": [820.0, 118.0, 34.0, 22.0], "iscrowd": 0}, {"id": 202004152020041500010, "image_id": 202004152020041500010, "category_id": 91, "segmentation": [[729.3658536585365, 227.2682926829268, 781.8048780487804, 261.4146341463414]], "area": 1855.0, "bbox": [729.0, 227.0, 53.0, 35.0], "iscrowd": 0}, {"id": 202004152020041500011, "image_id": 202004152020041500011, "category_id": 91, "segmentation": [[993.9999999999999, 674.8292682926829, 1161.0731707317073, 800.4390243902438]], "area": 21463.0, "bbox": [993.0, 674.0, 169.0, 127.0], "iscrowd": 0}, {"id": 202004152020041500012, "image_id": 202004152020041500012, "category_id": 91, "segmentation": [[537.9024390243902, 338.24390243902434, 623.2682926829268, 382.1463414634146]], "area": 3915.0, "bbox": [537.0, 338.0, 87.0, 45.0], "iscrowd": 0}, {"id": 202004152020041500013, "image_id": 202004152020041500013, "category_id": 91, "segmentation": [[741.560975609756, 300.4390243902439, 820.8292682926829, 366.29268292682923]], "area": 5360.0, "bbox": [741.0, 300.0, 80.0, 67.0], "iscrowd": 0}, {"id": 202004152020041500014, "image_id": 202004152020041500014, "category_id": 91, "segmentation": [[1319.6097560975609, 269.9512195121951, 1401.3170731707316, 350.43902439024384]], "area": 6806.0, "bbox": [1319.0, 269.0, 83.0, 82.0], "iscrowd": 0}, {"id": 202004152020041500015, "image_id": 202004152020041500015, "category_id": 91, "segmentation": [[745.2195121951219, 140.68292682926827, 779.3658536585365, 165.0731707317073]], "area": 910.0, "bbox": [745.0, 140.0, 35.0, 26.0], "iscrowd": 0}, {"id": 202004152020041500016, "image_id": 202004152020041500016, "category_id": 91, "segmentation": [[1073.2682926829268, 102.8780487804878, 1115.951219512195, 139.46341463414632]], "area": 1634.0, "bbox": [1073.0, 102.0, 43.0, 38.0], "iscrowd": 0}, {"id": 202004152020041500017, "image_id": 202004152020041500017, "category_id": 91, "segmentation": [[761.0731707317073, 126.04878048780486, 793.9999999999999, 140.68292682926827]], "area": 495.0, "bbox": [761.0, 126.0, 33.0, 15.0], "iscrowd": 0}, {"id": 202004152020041500018, "image_id": 202004152020041500018, "category_id": 91, "segmentation": [[734.2439024390243, 338.24390243902434, 802.5365853658536, 378.48780487804873]], "area": 2829.0, "bbox": [734.0, 338.0, 69.0, 41.0], "iscrowd": 0}, {"id": 202004152020041500019, "image_id": 202004152020041500019, "category_id": 91, "segmentation": [[1131.8048780487804, 566.2926829268292, 1362.2926829268292, 706.5365853658536]], "area": 32712.0, "bbox": [1131.0, 566.0, 232.0, 141.0], "iscrowd": 0}, {"id": 202004152020041500020, "image_id": 202004152020041500020, "category_id": 91, "segmentation": [[1078.1463414634145, 634.5853658536585, 1311.0731707317073, 819.951219512195]], "area": 43524.0, "bbox": [1078.0, 634.0, 234.0, 186.0], "iscrowd": 0}, {"id": 202004152020041500021, "image_id": 202004152020041500021, "category_id": 91, "segmentation": [[333.0243902439024, 539.4634146341463, 601.3170731707316, 672.390243902439]], "area": 36046.0, "bbox": [333.0, 539.0, 269.0, 134.0], "iscrowd": 0}, {"id": 202004152020041500022, "image_id": 202004152020041500022, "category_id": 91, "segmentation": [[1151.3170731707316, 626.0487804878048, 1414.731707317073, 784.5853658536585]], "area": 41976.0, "bbox": [1151.0, 626.0, 264.0, 159.0], "iscrowd": 0}, {"id": 202004152020041500023, "image_id": 202004152020041500023, "category_id": 91, "segmentation": [[1122.0487804878048, 617.5121951219512, 1397.6585365853657, 766.2926829268292]], "area": 41400.0, "bbox": [1122.0, 617.0, 276.0, 150.0], "iscrowd": 0}, {"id": 202004152020041500024, "image_id": 202004152020041500024, "category_id": 91, "segmentation": [[1172.0487804878048, 445.56097560975604, 1279.3658536585365, 539.4634146341463]], "area": 10260.0, "bbox": [1172.0, 445.0, 108.0, 95.0], "iscrowd": 0}, {"id": 202004152020041500025, "image_id": 202004152020041500025, "category_id": 91, "segmentation": [[689.1219512195122, 384.5853658536585, 804.9756097560975, 451.6585365853658]], "area": 7888.0, "bbox": [689.0, 384.0, 116.0, 68.0], "iscrowd": 0}, {"id": 202004152020041500026, "image_id": 202004152020041500026, "category_id": 91, "segmentation": [[1070.8292682926829, 648.0, 1336.6829268292681, 785.8048780487804]], "area": 36846.0, "bbox": [1070.0, 648.0, 267.0, 138.0], "iscrowd": 0}, {"id": 202004152020041500027, "image_id": 202004152020041500027, "category_id": 91, "segmentation": [[965.951219512195, 610.1951219512194, 1179.3658536585365, 755.3170731707316]], "area": 31390.0, "bbox": [965.0, 610.0, 215.0, 146.0], "iscrowd": 0}, {"id": 202004152020041500028, "image_id": 202004152020041500028, "category_id": 91, "segmentation": [[997.6585365853658, 645.560975609756, 1207.4146341463413, 805.3170731707316]], "area": 33971.0, "bbox": [997.0, 645.0, 211.0, 161.0], "iscrowd": 0}, {"id": 202004152020041500029, "image_id": 202004152020041500029, "category_id": 91, "segmentation": [[1156.1951219512193, 495.56097560975604, 1323.2682926829268, 583.3658536585366]], "area": 14952.0, "bbox": [1156.0, 495.0, 168.0, 89.0], "iscrowd": 0}, {"id": 202004152020041500030, "image_id": 202004152020041500030, "category_id": 91, "segmentation": [[761.0731707317073, 160.1951219512195, 791.560975609756, 183.36585365853657]], "area": 744.0, "bbox": [761.0, 160.0, 31.0, 24.0], "iscrowd": 0}, {"id": 202004152020041500031, "image_id": 202004152020041500031, "category_id": 91, "segmentation": [[853.7560975609755, 461.4146341463414, 946.4390243902438, 529.7073170731707]], "area": 6486.0, "bbox": [853.0, 461.0, 94.0, 69.0], "iscrowd": 0}, {"id": 202004152020041500032, "image_id": 202004152020041500032, "category_id": 91, "segmentation": [[973.2682926829267, 252.8780487804878, 1030.5853658536585, 307.7560975609756]], "area": 3248.0, "bbox": [973.0, 252.0, 58.0, 56.0], "iscrowd": 0}, {"id": 202004152020041500033, "image_id": 202004152020041500033, "category_id": 91, "segmentation": [[859.8536585365853, 110.1951219512195, 891.560975609756, 132.14634146341461]], "area": 759.0, "bbox": [859.0, 110.0, 33.0, 23.0], "iscrowd": 0}, {"id": 202004152020041500034, "image_id": 202004152020041500034, "category_id": 91, "segmentation": [[911.0731707317073, 301.6585365853658, 981.8048780487804, 341.9024390243902]], "area": 2911.0, "bbox": [911.0, 301.0, 71.0, 41.0], "iscrowd": 0}, {"id": 202004152020041500035, "image_id": 202004152020041500035, "category_id": 91, "segmentation": [[897.6585365853658, 183.36585365853657, 959.8536585365853, 234.58536585365852]], "area": 3276.0, "bbox": [897.0, 183.0, 63.0, 52.0], "iscrowd": 0}, {"id": 202004152020041500036, "image_id": 202004152020041500036, "category_id": 91, "segmentation": [[900.0975609756097, 189.46341463414632, 957.4146341463414, 211.41463414634143]], "area": 1334.0, "bbox": [900.0, 189.0, 58.0, 23.0], "iscrowd": 0}, {"id": 202004152020041500037, "image_id": 202004152020041500036, "category_id": 91, "segmentation": [[1364.731707317073, 598.0, 1524.4878048780486, 726.0487804878048]], "area": 20769.0, "bbox": [1364.0, 598.0, 161.0, 129.0], "iscrowd": 0}, {"id": 202004152020041500038, "image_id": 202004152020041500037, "category_id": 91, "segmentation": [[769.6097560975609, 235.80487804878044, 846.4390243902438, 284.5853658536585]], "area": 3900.0, "bbox": [769.0, 235.0, 78.0, 50.0], "iscrowd": 0}, {"id": 202004152020041500039, "image_id": 202004152020041500037, "category_id": 91, "segmentation": [[1223.2682926829268, 526.0487804878048, 1365.951219512195, 610.1951219512194]], "area": 12155.0, "bbox": [1223.0, 526.0, 143.0, 85.0], "iscrowd": 0}, {"id": 202004152020041500040, "image_id": 202004152020041500038, "category_id": 91, "segmentation": [[1000.0975609756097, 552.8780487804878, 1111.0731707317073, 665.0731707317073]], "area": 12768.0, "bbox": [1000.0, 552.0, 112.0, 114.0], "iscrowd": 0}, {"id": 202004152020041500041, "image_id": 202004152020041500039, "category_id": 91, "segmentation": [[661.0731707317073, 202.87804878048777, 711.0731707317073, 245.5609756097561]], "area": 2244.0, "bbox": [661.0, 202.0, 51.0, 44.0], "iscrowd": 0}, {"id": 202004152020041500042, "image_id": 202004152020041500039, "category_id": 91, "segmentation": [[773.2682926829268, 193.12195121951217, 817.170731707317, 226.04878048780483]], "area": 1530.0, "bbox": [773.0, 193.0, 45.0, 34.0], "iscrowd": 0}, {"id": 202004152020041500043, "image_id": 202004152020041500040, "category_id": 91, "segmentation": [[658.6341463414634, 239.46341463414632, 714.7317073170731, 268.73170731707313]], "area": 1710.0, "bbox": [658.0, 239.0, 57.0, 30.0], "iscrowd": 0}, {"id": 202004152020041500044, "image_id": 202004152020041500041, "category_id": 91, "segmentation": [[1242.780487804878, 407.75609756097555, 1337.90243902439, 471.17073170731703]], "area": 6240.0, "bbox": [1242.0, 407.0, 96.0, 65.0], "iscrowd": 0}, {"id": 202004152020041500045, "image_id": 202004152020041500042, "category_id": 91, "segmentation": [[840.3414634146341, 140.68292682926827, 878.1463414634146, 162.6341463414634]], "area": 897.0, "bbox": [840.0, 140.0, 39.0, 23.0], "iscrowd": 0}, {"id": 202004152020041500046, "image_id": 202004152020041500043, "category_id": 91, "segmentation": [[958.6341463414633, 291.9024390243902, 1047.6585365853657, 337.0243902439024]], "area": 4230.0, "bbox": [958.0, 291.0, 90.0, 47.0], "iscrowd": 0}, {"id": 202004152020041500047, "image_id": 202004152020041500044, "category_id": 91, "segmentation": [[478.1463414634146, 808.9756097560975, 675.7073170731707, 944.3414634146341]], "area": 27126.0, "bbox": [478.0, 808.0, 198.0, 137.0], "iscrowd": 0}, {"id": 202004152020041500048, "image_id": 202004152020041500045, "category_id": 91, "segmentation": [[1294.0, 293.12195121951214, 1402.5365853658536, 377.2682926829268]], "area": 9265.0, "bbox": [1294.0, 293.0, 109.0, 85.0], "iscrowd": 0}, {"id": 202004152020041500049, "image_id": 202004152020041500046, "category_id": 91, "segmentation": [[811.0731707317073, 684.5853658536585, 979.3658536585365, 871.170731707317]], "area": 31772.0, "bbox": [811.0, 684.0, 169.0, 188.0], "iscrowd": 0}, {"id": 202004152020041500050, "image_id": 202004152020041500047, "category_id": 91, "segmentation": [[428.1463414634146, 599.2195121951219, 558.6341463414634, 735.8048780487804]], "area": 17947.0, "bbox": [428.0, 599.0, 131.0, 137.0], "iscrowd": 0}, {"id": 202004152020041500051, "image_id": 202004152020041500048, "category_id": 91, "segmentation": [[729.3658536585365, 165.0731707317073, 779.3658536585365, 196.78048780487802]], "area": 1632.0, "bbox": [729.0, 165.0, 51.0, 32.0], "iscrowd": 0}, {"id": 202004152020041500052, "image_id": 202004152020041500049, "category_id": 91, "segmentation": [[536.6829268292682, 204.09756097560972, 572.0487804878048, 232.14634146341461]], "area": 1073.0, "bbox": [536.0, 204.0, 37.0, 29.0], "iscrowd": 0}, {"id": 202004152020041500053, "image_id": 202004152020041500050, "category_id": 91, "segmentation": [[544.0, 211.41463414634143, 572.0487804878048, 232.14634146341461]], "area": 638.0, "bbox": [544.0, 211.0, 29.0, 22.0], "iscrowd": 0}, {"id": 202004152020041500054, "image_id": 202004152020041500051, "category_id": 91, "segmentation": [[1314.731707317073, 157.7560975609756, 1375.7073170731705, 196.78048780487802]], "area": 2480.0, "bbox": [1314.0, 157.0, 62.0, 40.0], "iscrowd": 0}, {"id": 202004152020041500055, "image_id": 202004152020041500052, "category_id": 91, "segmentation": [[1533.0243902439024, 369.9512195121951, 1662.2926829268292, 455.31707317073165]], "area": 11310.0, "bbox": [1533.0, 369.0, 130.0, 87.0], "iscrowd": 0}, {"id": 202004152020041500056, "image_id": 202004152020041500053, "category_id": 91, "segmentation": [[793.9999999999999, 137.02439024390242, 824.4878048780487, 160.1951219512195]], "area": 768.0, "bbox": [793.0, 137.0, 32.0, 24.0], "iscrowd": 0}, {"id": 202004152020041500057, "image_id": 202004152020041500054, "category_id": 91, "segmentation": [[1692.780487804878, 383.36585365853654, 1786.6829268292681, 472.390243902439]], "area": 8550.0, "bbox": [1692.0, 383.0, 95.0, 90.0], "iscrowd": 0}, {"id": 202004152020041500058, "image_id": 202004152020041500055, "category_id": 91, "segmentation": [[1663.512195121951, 378.48780487804873, 1748.8780487804877, 457.75609756097555]], "area": 6880.0, "bbox": [1663.0, 378.0, 86.0, 80.0], "iscrowd": 0}, {"id": 202004152020041500059, "image_id": 202004152020041500056, "category_id": 91, "segmentation": [[992.780487804878, 104.09756097560975, 1053.7560975609756, 133.36585365853657]], "area": 1860.0, "bbox": [992.0, 104.0, 62.0, 30.0], "iscrowd": 0}, {"id": 202004152020041500060, "image_id": 202004152020041500057, "category_id": 91, "segmentation": [[961.0731707317073, 139.46341463414632, 1011.0731707317073, 167.5121951219512]], "area": 1479.0, "bbox": [961.0, 139.0, 51.0, 29.0], "iscrowd": 0}, {"id": 202004152020041500061, "image_id": 202004152020041500058, "category_id": 91, "segmentation": [[673.2682926829268, 180.92682926829266, 724.4878048780487, 202.87804878048777]], "area": 1196.0, "bbox": [673.0, 180.0, 52.0, 23.0], "iscrowd": 0}, {"id": 202004152020041500062, "image_id": 202004152020041500059, "category_id": 91, "segmentation": [[418.390243902439, 474.82926829268285, 551.3170731707316, 539.4634146341463]], "area": 8844.0, "bbox": [418.0, 474.0, 134.0, 66.0], "iscrowd": 0}, {"id": 202004152020041500063, "image_id": 202004152020041500060, "category_id": 91, "segmentation": [[136.68292682926827, 774.8292682926829, 323.2682926829268, 863.8536585365853]], "area": 16920.0, "bbox": [136.0, 774.0, 188.0, 90.0], "iscrowd": 0}, {"id": 202004152020041500064, "image_id": 202004152020041500061, "category_id": 91, "segmentation": [[1378.1463414634145, 393.12195121951214, 1504.9756097560974, 511.4146341463414]], "area": 15113.0, "bbox": [1378.0, 393.0, 127.0, 119.0], "iscrowd": 0}, {"id": 202004152020041500065, "image_id": 202004152020041500062, "category_id": 91, "segmentation": [[1359.8536585365853, 369.9512195121951, 1485.4634146341461, 466.29268292682923]], "area": 12446.0, "bbox": [1359.0, 369.0, 127.0, 98.0], "iscrowd": 0}, {"id": 202004152020041500066, "image_id": 202004152020041500063, "category_id": 91, "segmentation": [[1353.7560975609756, 372.390243902439, 1487.90243902439, 467.5121951219512]], "area": 12960.0, "bbox": [1353.0, 372.0, 135.0, 96.0], "iscrowd": 0}, {"id": 202004152020041500067, "image_id": 202004152020041500064, "category_id": 91, "segmentation": [[1428.1463414634145, 354.0975609756097, 1554.9756097560974, 437.0243902439024]], "area": 10668.0, "bbox": [1428.0, 354.0, 127.0, 84.0], "iscrowd": 0}, {"id": 202004152020041500068, "image_id": 202004152020041500065, "category_id": 91, "segmentation": [[1362.2926829268292, 354.0975609756097, 1489.121951219512, 433.36585365853654]], "area": 10240.0, "bbox": [1362.0, 354.0, 128.0, 80.0], "iscrowd": 0}, {"id": 202004152020041500069, "image_id": 202004152020041500066, "category_id": 91, "segmentation": [[1359.8536585365853, 358.9756097560975, 1480.5853658536585, 452.87804878048775]], "area": 11590.0, "bbox": [1359.0, 358.0, 122.0, 95.0], "iscrowd": 0}, {"id": 202004152020041500070, "image_id": 202004152020041500067, "category_id": 91, "segmentation": [[1352.5365853658536, 358.9756097560975, 1480.5853658536585, 440.68292682926824]], "area": 10707.0, "bbox": [1352.0, 358.0, 129.0, 83.0], "iscrowd": 0}, {"id": 202004152020041500071, "image_id": 202004152020041500068, "category_id": 91, "segmentation": [[1358.6341463414633, 354.0975609756097, 1480.5853658536585, 445.56097560975604]], "area": 11316.0, "bbox": [1358.0, 354.0, 123.0, 92.0], "iscrowd": 0}, {"id": 202004152020041500072, "image_id": 202004152020041500069, "category_id": 91, "segmentation": [[1347.6585365853657, 358.9756097560975, 1474.4878048780486, 446.780487804878]], "area": 11392.0, "bbox": [1347.0, 358.0, 128.0, 89.0], "iscrowd": 0}, {"id": 202004152020041500073, "image_id": 202004152020041500070, "category_id": 91, "segmentation": [[1394.0, 354.0975609756097, 1518.390243902439, 440.68292682926824]], "area": 10875.0, "bbox": [1394.0, 354.0, 125.0, 87.0], "iscrowd": 0}, {"id": 202004152020041500074, "image_id": 202004152020041500071, "category_id": 91, "segmentation": [[1384.2439024390244, 354.0975609756097, 1504.9756097560974, 441.9024390243902]], "area": 10648.0, "bbox": [1384.0, 354.0, 121.0, 88.0], "iscrowd": 0}, {"id": 202004152020041500075, "image_id": 202004152020041500072, "category_id": 91, "segmentation": [[1378.1463414634145, 388.24390243902434, 1515.951219512195, 498.0]], "area": 15318.0, "bbox": [1378.0, 388.0, 138.0, 111.0], "iscrowd": 0}, {"id": 202004152020041500076, "image_id": 202004152020041500073, "category_id": 91, "segmentation": [[1420.8292682926829, 377.2682926829268, 1558.6341463414633, 491.9024390243902]], "area": 15985.0, "bbox": [1420.0, 377.0, 139.0, 115.0], "iscrowd": 0}, {"id": 202004152020041500077, "image_id": 202004152020041500074, "category_id": 91, "segmentation": [[1447.6585365853657, 363.8536585365853, 1572.0487804878048, 460.19512195121945]], "area": 12348.0, "bbox": [1447.0, 363.0, 126.0, 98.0], "iscrowd": 0}, {"id": 202004152020041500078, "image_id": 202004152020041500075, "category_id": 91, "segmentation": [[1195.2195121951218, 421.17073170731703, 1294.0, 506.5365853658536]], "area": 8600.0, "bbox": [1195.0, 421.0, 100.0, 86.0], "iscrowd": 0}, {"id": 202004152020041500079, "image_id": 202004152020041500075, "category_id": 91, "segmentation": [[1425.7073170731705, 368.73170731707313, 1562.2926829268292, 480.92682926829264]], "area": 15594.0, "bbox": [1425.0, 368.0, 138.0, 113.0], "iscrowd": 0}, {"id": 202004152020041500080, "image_id": 202004152020041500076, "category_id": 91, "segmentation": [[1298.8780487804877, 233.36585365853654, 1380.5853658536585, 274.8292682926829]], "area": 3486.0, "bbox": [1298.0, 233.0, 83.0, 42.0], "iscrowd": 0}, {"id": 202004152020041500081, "image_id": 202004152020041500076, "category_id": 91, "segmentation": [[1420.8292682926829, 362.6341463414634, 1542.780487804878, 478.4878048780488]], "area": 14391.0, "bbox": [1420.0, 362.0, 123.0, 117.0], "iscrowd": 0}, {"id": 202004152020041500082, "image_id": 202004152020041500077, "category_id": 91, "segmentation": [[1495.2195121951218, 268.73170731707313, 1563.5121951219512, 333.36585365853654]], "area": 4554.0, "bbox": [1495.0, 268.0, 69.0, 66.0], "iscrowd": 0}, {"id": 202004152020041500083, "image_id": 202004152020041500077, "category_id": 91, "segmentation": [[1415.951219512195, 368.73170731707313, 1541.560975609756, 471.17073170731703]], "area": 13208.0, "bbox": [1415.0, 368.0, 127.0, 104.0], "iscrowd": 0}, {"id": 202004152020041500084, "image_id": 202004152020041500078, "category_id": 91, "segmentation": [[1526.9268292682925, 308.9756097560975, 1604.9756097560974, 390.68292682926824]], "area": 6557.0, "bbox": [1526.0, 308.0, 79.0, 83.0], "iscrowd": 0}, {"id": 202004152020041500085, "image_id": 202004152020041500078, "category_id": 91, "segmentation": [[1404.9756097560974, 371.17073170731703, 1523.2682926829268, 466.29268292682923]], "area": 11520.0, "bbox": [1404.0, 371.0, 120.0, 96.0], "iscrowd": 0}, {"id": 202004152020041500086, "image_id": 202004152020041500079, "category_id": 91, "segmentation": [[1540.341463414634, 306.5365853658536, 1606.1951219512193, 387.0243902439024]], "area": 5494.0, "bbox": [1540.0, 306.0, 67.0, 82.0], "iscrowd": 0}, {"id": 202004152020041500087, "image_id": 202004152020041500079, "category_id": 91, "segmentation": [[1406.1951219512193, 376.04878048780483, 1539.121951219512, 484.58536585365846]], "area": 14606.0, "bbox": [1406.0, 376.0, 134.0, 109.0], "iscrowd": 0}, {"id": 202004152020041500088, "image_id": 202004152020041500080, "category_id": 91, "segmentation": [[1561.0731707317073, 302.8780487804878, 1611.0731707317073, 383.36585365853654]], "area": 4182.0, "bbox": [1561.0, 302.0, 51.0, 82.0], "iscrowd": 0}, {"id": 202004152020041500089, "image_id": 202004152020041500080, "category_id": 91, "segmentation": [[1412.2926829268292, 369.9512195121951, 1546.4390243902437, 482.1463414634146]], "area": 15390.0, "bbox": [1412.0, 369.0, 135.0, 114.0], "iscrowd": 0}, {"id": 202004152020041500090, "image_id": 202004152020041500081, "category_id": 91, "segmentation": [[1570.8292682926829, 287.0243902439024, 1612.2926829268292, 368.73170731707313]], "area": 3526.0, "bbox": [1570.0, 287.0, 43.0, 82.0], "iscrowd": 0}, {"id": 202004152020041500091, "image_id": 202004152020041500081, "category_id": 91, "segmentation": [[1400.0975609756097, 376.04878048780483, 1534.2439024390242, 482.1463414634146]], "area": 14445.0, "bbox": [1400.0, 376.0, 135.0, 107.0], "iscrowd": 0}, {"id": 202004152020041500092, "image_id": 202004152020041500082, "category_id": 91, "segmentation": [[1408.6341463414633, 380.92682926829264, 1528.1463414634145, 471.17073170731703]], "area": 11132.0, "bbox": [1408.0, 380.0, 121.0, 92.0], "iscrowd": 0}, {"id": 202004152020041500093, "image_id": 202004152020041500083, "category_id": 91, "segmentation": [[1404.9756097560974, 377.2682926829268, 1511.0731707317073, 469.95121951219505]], "area": 10044.0, "bbox": [1404.0, 377.0, 108.0, 93.0], "iscrowd": 0}, {"id": 202004152020041500094, "image_id": 202004152020041500084, "category_id": 91, "segmentation": [[1389.121951219512, 391.9024390243902, 1522.0487804878048, 507.7560975609756]], "area": 15678.0, "bbox": [1389.0, 391.0, 134.0, 117.0], "iscrowd": 0}, {"id": 202004152020041500095, "image_id": 202004152020041500085, "category_id": 91, "segmentation": [[1374.4878048780486, 388.24390243902434, 1504.9756097560974, 491.9024390243902]], "area": 13624.0, "bbox": [1374.0, 388.0, 131.0, 104.0], "iscrowd": 0}, {"id": 202004152020041500096, "image_id": 202004152020041500086, "category_id": 91, "segmentation": [[602.5365853658536, 412.6341463414634, 701.3170731707316, 461.4146341463414]], "area": 5000.0, "bbox": [602.0, 412.0, 100.0, 50.0], "iscrowd": 0}, {"id": 202004152020041500097, "image_id": 202004152020041500086, "category_id": 91, "segmentation": [[895.2195121951219, 266.29268292682923, 968.3902439024389, 321.17073170731703]], "area": 4144.0, "bbox": [895.0, 266.0, 74.0, 56.0], "iscrowd": 0}, {"id": 202004152020041500098, "image_id": 202004152020041500087, "category_id": 91, "segmentation": [[959.8536585365853, 147.99999999999997, 1004.9756097560975, 176.04878048780486]], "area": 1380.0, "bbox": [959.0, 147.0, 46.0, 30.0], "iscrowd": 0}, {"id": 202004152020041500099, "image_id": 202004152020041500088, "category_id": 91, "segmentation": [[804.9756097560975, 226.04878048780483, 865.951219512195, 266.29268292682923]], "area": 2542.0, "bbox": [804.0, 226.0, 62.0, 41.0], "iscrowd": 0}, {"id": 202004152020041500100, "image_id": 202004152020041500089, "category_id": 91, "segmentation": [[547.6585365853658, 174.8292682926829, 583.0243902439024, 194.34146341463412]], "area": 777.0, "bbox": [547.0, 174.0, 37.0, 21.0], "iscrowd": 0}, {"id": 202004152020041500101, "image_id": 202004152020041500090, "category_id": 91, "segmentation": [[854.9756097560975, 145.56097560975607, 890.3414634146341, 173.60975609756096]], "area": 1073.0, "bbox": [854.0, 145.0, 37.0, 29.0], "iscrowd": 0}, {"id": 202004152020041500102, "image_id": 202004152020041500091, "category_id": 91, "segmentation": [[917.170731707317, 121.17073170731706, 984.2439024390243, 155.3170731707317]], "area": 2380.0, "bbox": [917.0, 121.0, 68.0, 35.0], "iscrowd": 0}, {"id": 202004152020041500103, "image_id": 202004152020041500091, "category_id": 91, "segmentation": [[1068.390243902439, 123.60975609756096, 1130.5853658536585, 157.7560975609756]], "area": 2205.0, "bbox": [1068.0, 123.0, 63.0, 35.0], "iscrowd": 0}, {"id": 202004152020041500104, "image_id": 202004152020041500092, "category_id": 91, "segmentation": [[33.78056426332287, 22.884012539184955, 220.9278996865204, 147.02194357366773]], "area": 23688.0, "bbox": [33.0, 22.0, 188.0, 126.0], "iscrowd": 0}, {"id": 202004152020041500105, "image_id": 202004152020041500093, "category_id": 91, "segmentation": [[109.09917355371903, 29.338842975206614, 285.54545454545456, 233.4710743801653]], "area": 36285.0, "bbox": [109.0, 29.0, 177.0, 205.0], "iscrowd": 0}, {"id": 202004152020041500106, "image_id": 202004152020041500094, "category_id": 91, "segmentation": [[104.6103896103896, 1.0389610389610389, 253.4415584415584, 86.23376623376623]], "area": 12900.0, "bbox": [104.0, 1.0, 150.0, 86.0], "iscrowd": 0}, {"id": 202004152020041500107, "image_id": 202004152020041500095, "category_id": 91, "segmentation": [[59.28378378378379, 23.14189189189189, 125.66891891891893, 71.28378378378379]], "area": 3283.0, "bbox": [59.0, 23.0, 67.0, 49.0], "iscrowd": 0}, {"id": 202004152020041500108, "image_id": 202004152020041500096, "category_id": 91, "segmentation": [[157.3757225433526, 22.54335260115607, 440.0346820809249, 213.29479768786126]], "area": 54528.0, "bbox": [157.0, 22.0, 284.0, 192.0], "iscrowd": 0}, {"id": 202004152020041500109, "image_id": 202004152020041500097, "category_id": 91, "segmentation": [[337.81981981981977, 188.73873873873873, 115.29729729729726, 31.081081081081077]], "area": 35234.0, "bbox": [115.0, 31.0, 223.0, 158.0], "iscrowd": 0}, {"id": 202004152020041500110, "image_id": 202004152020041500098, "category_id": 91, "segmentation": [[36.802867383512535, 10.75268817204301, 304.18637992831543, 155.55555555555554]], "area": 39274.0, "bbox": [36.0, 10.0, 269.0, 146.0], "iscrowd": 0}, {"id": 202004152020041500111, "image_id": 202004152020041500099, "category_id": 91, "segmentation": [[126.5502392344498, 0.47846889952153115, 446.16746411483257, 177.0334928229665]], "area": 57138.0, "bbox": [126.0, 0.0, 321.0, 178.0], "iscrowd": 0}, {"id": 202004152020041500112, "image_id": 202004152020041500100, "category_id": 91, "segmentation": [[106.91139240506328, 2.9535864978902953, 307.75527426160335, 176.37130801687763]], "area": 35350.0, "bbox": [106.0, 2.0, 202.0, 175.0], "iscrowd": 0}, {"id": 202004152020041500113, "image_id": 202004152020041500101, "category_id": 91, "segmentation": [[16.310344827586206, 30.127041742286753, 96.70961887477316, 79.67332123411978]], "area": 4050.0, "bbox": [16.0, 30.0, 81.0, 50.0], "iscrowd": 0}, {"id": 202004152020041500114, "image_id": 202004152020041500102, "category_id": 91, "segmentation": [[94.08270676691728, 2.255639097744361, 288.0676691729323, 172.93233082706766]], "area": 33345.0, "bbox": [94.0, 2.0, 195.0, 171.0], "iscrowd": 0}, {"id": 202004152020041500115, "image_id": 202004152020041500103, "category_id": 91, "segmentation": [[124.3409961685824, 29.501915708812263, 316.2950191570881, 197.31800766283527]], "area": 32617.0, "bbox": [124.0, 29.0, 193.0, 169.0], "iscrowd": 0}, {"id": 202004152020041500116, "image_id": 202004152020041500104, "category_id": 91, "segmentation": [[113.18055555555557, 12.152777777777779, 277.4166666666667, 117.70833333333334]], "area": 17490.0, "bbox": [113.0, 12.0, 165.0, 106.0], "iscrowd": 0}, {"id": 202004152020041500117, "image_id": 202004152020041500105, "category_id": 91, "segmentation": [[46.26732673267327, 1.9801980198019802, 227.95049504950492, 97.52475247524752]], "area": 17654.0, "bbox": [46.0, 1.0, 182.0, 97.0], "iscrowd": 0}, {"id": 202004152020041500118, "image_id": 202004152020041500106, "category_id": 91, "segmentation": [[39.47619047619047, 9.523809523809524, 106.68707482993196, 59.59183673469387]], "area": 3468.0, "bbox": [39.0, 9.0, 68.0, 51.0], "iscrowd": 0}, {"id": 202004152020041500119, "image_id": 202004152020041500107, "category_id": 91, "segmentation": [[76.16094986807389, 32.98153034300792, 180.64643799472296, 103.16622691292876]], "area": 7560.0, "bbox": [76.0, 32.0, 105.0, 72.0], "iscrowd": 0}, {"id": 202004152020041500120, "image_id": 202004152020041500108, "category_id": 91, "segmentation": [[93.28136882129277, 33.840304182509506, 297.0836501901141, 165.39923954372625]], "area": 27265.0, "bbox": [93.0, 33.0, 205.0, 133.0], "iscrowd": 0}, {"id": 202004152020041500121, "image_id": 202004152020041500109, "category_id": 91, "segmentation": [[130.41071428571428, 53.57142857142857, 351.3928571428571, 195.0892857142857]], "area": 31746.0, "bbox": [130.0, 53.0, 222.0, 143.0], "iscrowd": 0}, {"id": 202004152020041500122, "image_id": 202004152020041500110, "category_id": 91, "segmentation": [[51.75107296137338, 40.343347639484975, 130.50643776824035, 89.91416309012875]], "area": 4000.0, "bbox": [51.0, 40.0, 80.0, 50.0], "iscrowd": 0}, {"id": 202004152020041500123, "image_id": 202004152020041500111, "category_id": 91, "segmentation": [[63.63917525773195, 31.546391752577318, 144.05154639175257, 84.53608247422679]], "area": 4428.0, "bbox": [63.0, 31.0, 82.0, 54.0], "iscrowd": 0}, {"id": 202004152020041500124, "image_id": 202004152020041500112, "category_id": 91, "segmentation": [[120.93457943925233, 48.598130841121495, 371.40186915887847, 197.19626168224298]], "area": 37800.0, "bbox": [120.0, 48.0, 252.0, 150.0], "iscrowd": 0}, {"id": 202004152020041500125, "image_id": 202004152020041500113, "category_id": 91, "segmentation": [[52.51502145922747, 28.969957081545065, 135.56223175965664, 89.69957081545064]], "area": 5208.0, "bbox": [52.0, 28.0, 84.0, 62.0], "iscrowd": 0}, {"id": 202004152020041500126, "image_id": 202004152020041500114, "category_id": 91, "segmentation": [[49.54716981132074, 0.4150943396226414, 341.05660377358487, 181.54716981132074]], "area": 53326.0, "bbox": [49.0, 0.0, 293.0, 182.0], "iscrowd": 0}, {"id": 202004152020041500127, "image_id": 202004152020041500115, "category_id": 91, "segmentation": [[106.11253196930946, 0.7672634271099744, 261.61125319693093, 115.6010230179028]], "area": 18096.0, "bbox": [106.0, 0.0, 156.0, 116.0], "iscrowd": 0}, {"id": 202004152020041500128, "image_id": 202004152020041500116, "category_id": 91, "segmentation": [[88.85135135135135, 18.91891891891892, 272.63513513513516, 166.8918918918919]], "area": 27565.0, "bbox": [88.0, 18.0, 185.0, 149.0], "iscrowd": 0}, {"id": 202004152020041500129, "image_id": 202004152020041500117, "category_id": 91, "segmentation": [[83.41961852861036, 0.5449591280653951, 236.55313351498637, 92.64305177111717]], "area": 14322.0, "bbox": [83.0, 0.0, 154.0, 93.0], "iscrowd": 0}, {"id": 202004152020041500130, "image_id": 202004152020041500118, "category_id": 91, "segmentation": [[60.87301587301587, 0.9523809523809524, 256.74603174603175, 138.0952380952381]], "area": 27383.0, "bbox": [60.0, 0.0, 197.0, 139.0], "iscrowd": 0}, {"id": 202004152020041500131, "image_id": 202004152020041500119, "category_id": 91, "segmentation": [[90.42512077294688, 2.4154589371980677, 390.90821256038646, 185.024154589372]], "area": 55384.0, "bbox": [90.0, 2.0, 301.0, 184.0], "iscrowd": 0}, {"id": 202004152020041500132, "image_id": 202004152020041500120, "category_id": 91, "segmentation": [[976.9268292682926, 418.73170731707313, 1064.7317073170732, 506.5365853658536]], "area": 7921.0, "bbox": [976.0, 418.0, 89.0, 89.0], "iscrowd": 0}, {"id": 202004152020041500133, "image_id": 202004152020041500121, "category_id": 91, "segmentation": [[885.4634146341463, 237.02439024390242, 931.8048780487804, 284.5853658536585]], "area": 2256.0, "bbox": [885.0, 237.0, 47.0, 48.0], "iscrowd": 0}, {"id": 202004152020041500134, "image_id": 202004152020041500122, "category_id": 91, "segmentation": [[1064.7317073170732, 355.3170731707317, 1145.2195121951218, 421.17073170731703]], "area": 5494.0, "bbox": [1064.0, 355.0, 82.0, 67.0], "iscrowd": 0}, {"id": 202004152020041500135, "image_id": 202004152020041500123, "category_id": 91, "segmentation": [[947.6585365853658, 221.17073170731703, 1002.5365853658536, 262.6341463414634]], "area": 2352.0, "bbox": [947.0, 221.0, 56.0, 42.0], "iscrowd": 0}, {"id": 202004152020041500136, "image_id": 202004152020041500124, "category_id": 91, "segmentation": [[1054.9756097560976, 284.5853658536585, 1131.8048780487804, 330.92682926829264]], "area": 3666.0, "bbox": [1054.0, 284.0, 78.0, 47.0], "iscrowd": 0}, {"id": 202004152020041500137, "image_id": 202004152020041500125, "category_id": 91, "segmentation": [[408.6341463414634, 407.75609756097555, 512.2926829268292, 466.29268292682923]], "area": 6300.0, "bbox": [408.0, 407.0, 105.0, 60.0], "iscrowd": 0}, {"id": 202004152020041500138, "image_id": 202004152020041500126, "category_id": 91, "segmentation": [[892.780487804878, 349.2195121951219, 964.7317073170731, 401.6585365853658]], "area": 3869.0, "bbox": [892.0, 349.0, 73.0, 53.0], "iscrowd": 0}, {"id": 202004152020041500139, "image_id": 202004152020041500127, "category_id": 91, "segmentation": [[1035.4634146341464, 226.04878048780483, 1068.390243902439, 254.09756097560972]], "area": 986.0, "bbox": [1035.0, 226.0, 34.0, 29.0], "iscrowd": 0}, {"id": 202004152020041500140, "image_id": 202004152020041500128, "category_id": 91, "segmentation": [[1148.8780487804877, 185.80487804878047, 1181.8048780487804, 208.97560975609753]], "area": 816.0, "bbox": [1148.0, 185.0, 34.0, 24.0], "iscrowd": 0}, {"id": 202004152020041500141, "image_id": 202004152020041500129, "category_id": 91, "segmentation": [[1122.0487804878048, 182.14634146341461, 1159.8536585365853, 212.6341463414634]], "area": 1178.0, "bbox": [1122.0, 182.0, 38.0, 31.0], "iscrowd": 0}, {"id": 202004152020041500142, "image_id": 202004152020041500130, "category_id": 91, "segmentation": [[979.3658536585365, 252.8780487804878, 1015.951219512195, 296.780487804878]], "area": 1665.0, "bbox": [979.0, 252.0, 37.0, 45.0], "iscrowd": 0}, {"id": 202004152020041500143, "image_id": 202004152020041500130, "category_id": 91, "segmentation": [[1131.8048780487804, 182.14634146341461, 1159.8536585365853, 200.43902439024387]], "area": 551.0, "bbox": [1131.0, 182.0, 29.0, 19.0], "iscrowd": 0}, {"id": 202004152020041500144, "image_id": 202004152020041500131, "category_id": 91, "segmentation": [[1034.2439024390244, 227.2682926829268, 1073.2682926829268, 256.5365853658536]], "area": 1200.0, "bbox": [1034.0, 227.0, 40.0, 30.0], "iscrowd": 0}, {"id": 202004152020041500145, "image_id": 202004152020041500131, "category_id": 91, "segmentation": [[1185.4634146341461, 237.02439024390242, 1222.0487804878048, 268.73170731707313]], "area": 1216.0, "bbox": [1185.0, 237.0, 38.0, 32.0], "iscrowd": 0}, {"id": 202004152020041500146, "image_id": 202004152020041500132, "category_id": 91, "segmentation": [[533.0243902439024, 388.24390243902434, 640.3414634146341, 468.7317073170732]], "area": 8748.0, "bbox": [533.0, 388.0, 108.0, 81.0], "iscrowd": 0}, {"id": 202004152020041500147, "image_id": 202004152020041500133, "category_id": 91, "segmentation": [[790.3414634146341, 262.6341463414634, 836.6829268292682, 307.7560975609756]], "area": 2162.0, "bbox": [790.0, 262.0, 47.0, 46.0], "iscrowd": 0}, {"id": 202004152020041500148, "image_id": 202004152020041500134, "category_id": 91, "segmentation": [[652.5365853658536, 239.46341463414632, 697.6585365853658, 278.48780487804873]], "area": 1840.0, "bbox": [652.0, 239.0, 46.0, 40.0], "iscrowd": 0}, {"id": 202004152020041500149, "image_id": 202004152020041500135, "category_id": 91, "segmentation": [[630.5853658536585, 245.5609756097561, 672.0487804878048, 282.1463414634146]], "area": 1634.0, "bbox": [630.0, 245.0, 43.0, 38.0], "iscrowd": 0}, {"id": 202004152020041500150, "image_id": 202004152020041500136, "category_id": 91, "segmentation": [[634.2439024390244, 243.1219512195122, 676.9268292682926, 284.5853658536585]], "area": 1806.0, "bbox": [634.0, 243.0, 43.0, 42.0], "iscrowd": 0}, {"id": 202004152020041500151, "image_id": 202004152020041500137, "category_id": 91, "segmentation": [[1367.170731707317, 300.4390243902439, 1436.6829268292681, 345.56097560975604]], "area": 3220.0, "bbox": [1367.0, 300.0, 70.0, 46.0], "iscrowd": 0}, {"id": 202004152020041500152, "image_id": 202004152020041500138, "category_id": 91, "segmentation": [[1175.7073170731705, 341.9024390243902, 1259.8536585365853, 388.24390243902434]], "area": 4080.0, "bbox": [1175.0, 341.0, 85.0, 48.0], "iscrowd": 0}, {"id": 202004152020041500153, "image_id": 202004152020041500139, "category_id": 91, "segmentation": [[517.170731707317, 410.1951219512195, 647.6585365853658, 472.390243902439]], "area": 8253.0, "bbox": [517.0, 410.0, 131.0, 63.0], "iscrowd": 0}, {"id": 202004152020041500154, "image_id": 202004152020041500139, "category_id": 91, "segmentation": [[885.4634146341463, 329.7073170731707, 972.0487804878048, 405.31707317073165]], "area": 6776.0, "bbox": [885.0, 329.0, 88.0, 77.0], "iscrowd": 0}, {"id": 202004152020041500155, "image_id": 202004152020041500140, "category_id": 91, "segmentation": [[272.04878048780483, 429.7073170731707, 374.48780487804873, 516.2926829268292]], "area": 9064.0, "bbox": [272.0, 429.0, 103.0, 88.0], "iscrowd": 0}, {"id": 202004152020041500156, "image_id": 202004152020041500141, "category_id": 91, "segmentation": [[1050.0975609756097, 277.2682926829268, 1107.4146341463413, 333.36585365853654]], "area": 3306.0, "bbox": [1050.0, 277.0, 58.0, 57.0], "iscrowd": 0}, {"id": 202004152020041500157, "image_id": 202004152020041500142, "category_id": 91, "segmentation": [[689.1219512195122, 215.0731707317073, 731.8048780487804, 256.5365853658536]], "area": 1806.0, "bbox": [689.0, 215.0, 43.0, 42.0], "iscrowd": 0}, {"id": 202004152020041500158, "image_id": 202004152020041500143, "category_id": 91, "segmentation": [[715.951219512195, 217.5121951219512, 750.0975609756097, 251.65853658536582]], "area": 1260.0, "bbox": [715.0, 217.0, 36.0, 35.0], "iscrowd": 0}, {"id": 202004152020041500159, "image_id": 202004152020041500144, "category_id": 91, "segmentation": [[863.5121951219512, 240.6829268292683, 902.5365853658536, 263.8536585365853]], "area": 960.0, "bbox": [863.0, 240.0, 40.0, 24.0], "iscrowd": 0}, {"id": 202004152020041500160, "image_id": 202004152020041500145, "category_id": 91, "segmentation": [[1091.560975609756, 901.6585365853658, 1292.780487804878, 1045.560975609756]], "area": 29290.0, "bbox": [1091.0, 901.0, 202.0, 145.0], "iscrowd": 0}, {"id": 202004152020041500161, "image_id": 202004152020041500146, "category_id": 91, "segmentation": [[63.19237749546279, 17.05989110707804, 158.6551724137931, 83.30308529945553]], "area": 6432.0, "bbox": [63.0, 17.0, 96.0, 67.0], "iscrowd": 0}, {"id": 202004152020041500162, "image_id": 202004152020041500147, "category_id": 91, "segmentation": [[825.7073170731707, 266.29268292682923, 883.0243902439024, 299.2195121951219]], "area": 2006.0, "bbox": [825.0, 266.0, 59.0, 34.0], "iscrowd": 0}, {"id": 202004152020041500163, "image_id": 202004152020041500147, "category_id": 91, "segmentation": [[928.1463414634146, 185.80487804878047, 958.6341463414633, 215.0731707317073]], "area": 961.0, "bbox": [928.0, 185.0, 31.0, 31.0], "iscrowd": 0}, {"id": 202004152020041500164, "image_id": 202004152020041500148, "category_id": 91, "segmentation": [[665.951219512195, 576.0487804878048, 779.3658536585365, 705.3170731707316]], "area": 14950.0, "bbox": [665.0, 576.0, 115.0, 130.0], "iscrowd": 0}, {"id": 202004152020041500165, "image_id": 202004152020041500149, "category_id": 91, "segmentation": [[934.2439024390243, 267.5121951219512, 985.4634146341463, 327.2682926829268]], "area": 3172.0, "bbox": [934.0, 267.0, 52.0, 61.0], "iscrowd": 0}, {"id": 202004152020041500166, "image_id": 202004152020041500150, "category_id": 91, "segmentation": [[933.0243902439024, 273.60975609756093, 986.6829268292682, 327.2682926829268]], "area": 2970.0, "bbox": [933.0, 273.0, 54.0, 55.0], "iscrowd": 0}, {"id": 202004152020041500167, "image_id": 202004152020041500151, "category_id": 91, "segmentation": [[923.2682926829268, 240.6829268292683, 968.3902439024389, 288.24390243902434]], "area": 2254.0, "bbox": [923.0, 240.0, 46.0, 49.0], "iscrowd": 0}, {"id": 202004152020041500168, "image_id": 202004152020041500152, "category_id": 91, "segmentation": [[1014.7317073170731, 201.65853658536582, 1052.5365853658536, 239.46341463414632]], "area": 1521.0, "bbox": [1014.0, 201.0, 39.0, 39.0], "iscrowd": 0}, {"id": 202004152020041500169, "image_id": 202004152020041500153, "category_id": 91, "segmentation": [[1079.3658536585365, 169.9512195121951, 1107.4146341463413, 201.65853658536582]], "area": 957.0, "bbox": [1079.0, 169.0, 29.0, 33.0], "iscrowd": 0}, {"id": 202004152020041500170, "image_id": 202004152020041500154, "category_id": 91, "segmentation": [[992.780487804878, 340.68292682926824, 1076.9268292682925, 417.5121951219512]], "area": 6630.0, "bbox": [992.0, 340.0, 85.0, 78.0], "iscrowd": 0}, {"id": 202004152020041500171, "image_id": 202004152020041500154, "category_id": 91, "segmentation": [[1046.4390243902437, 180.92682926829266, 1075.7073170731705, 208.97560975609753]], "area": 870.0, "bbox": [1046.0, 180.0, 30.0, 29.0], "iscrowd": 0}
@DavidFangx
不只是头盔,还有识别 猫,狗,自行车,人等,但coco数据集没有头盔,所以我们整理一些含有头盔的图片,并labelMe进行了标注,coco的 categories 里的id最大值为90,所以 我添加了 头盔分类 (helmet) ID 为 class_num_id = 91 ,请参见下面:
"categories": [{"supercategory": "person","id": 1,"name": "person"},{"supercategory": "vehicle","id": 2,"name": "bicycle"},{"supercategory": "vehicle","id": 3,"name": "car"},{"supercategory": "vehicle","id": 4,"name": "motorcycle"},{"supercategory": "vehicle","id": 5,"name": "airplane"},{"supercategory": "vehicle","id": 6,"name": "bus"},{"supercategory": "vehicle","id": 7,"name": "train"},{"supercategory": "vehicle","id": 8,"name": "truck"},{"supercategory": "vehicle","id": 9,"name": "boat"},{"supercategory": "outdoor","id": 10,"name": "traffic light"},{"supercategory": "outdoor","id": 11,"name": "fire hydrant"},{"supercategory": "outdoor","id": 13,"name": "stop sign"},{"supercategory": "outdoor","id": 14,"name": "parking meter"},{"supercategory": "outdoor","id": 15,"name": "bench"},{"supercategory": "animal","id": 16,"name": "bird"},{"supercategory": "animal","id": 17,"name": "cat"},{"supercategory": "animal","id": 18,"name": "dog"},{"supercategory": "animal","id": 19,"name": "horse"},{"supercategory": "animal","id": 20,"name": "sheep"},{"supercategory": "animal","id": 21,"name": "cow"},{"supercategory": "animal","id": 22,"name": "elephant"},{"supercategory": "animal","id": 23,"name": "bear"},{"supercategory": "animal","id": 24,"name": "zebra"},{"supercategory": "animal","id": 25,"name": "giraffe"},{"supercategory": "accessory","id": 27,"name": "backpack"},{"supercategory": "accessory","id": 28,"name": "umbrella"},{"supercategory": "accessory","id": 31,"name": "handbag"},{"supercategory": "accessory","id": 32,"name": "tie"},{"supercategory": "accessory","id": 33,"name": "suitcase"},{"supercategory": "sports","id": 34,"name": "frisbee"},{"supercategory": "sports","id": 35,"name": "skis"},{"supercategory": "sports","id": 36,"name": "snowboard"},{"supercategory": "sports","id": 37,"name": "sports ball"},{"supercategory": "sports","id": 38,"name": "kite"},{"supercategory": "sports","id": 39,"name": "baseball bat"},{"supercategory": "sports","id": 40,"name": "baseball glove"},{"supercategory": "sports","id": 41,"name": "skateboard"},{"supercategory": "sports","id": 42,"name": "surfboard"},{"supercategory": "sports","id": 43,"name": "tennis racket"},{"supercategory": "kitchen","id": 44,"name": "bottle"},{"supercategory": "kitchen","id": 46,"name": "wine glass"},{"supercategory": "kitchen","id": 47,"name": "cup"},{"supercategory": "kitchen","id": 48,"name": "fork"},{"supercategory": "kitchen","id": 49,"name": "knife"},{"supercategory": "kitchen","id": 50,"name": "spoon"},{"supercategory": "kitchen","id": 51,"name": "bowl"},{"supercategory": "food","id": 52,"name": "banana"},{"supercategory": "food","id": 53,"name": "apple"},{"supercategory": "food","id": 54,"name": "sandwich"},{"supercategory": "food","id": 55,"name": "orange"},{"supercategory": "food","id": 56,"name": "broccoli"},{"supercategory": "food","id": 57,"name": "carrot"},{"supercategory": "food","id": 58,"name": "hot dog"},{"supercategory": "food","id": 59,"name": "pizza"},{"supercategory": "food","id": 60,"name": "donut"},{"supercategory": "food","id": 61,"name": "cake"},{"supercategory": "furniture","id": 62,"name": "chair"},{"supercategory": "furniture","id": 63,"name": "couch"},{"supercategory": "furniture","id": 64,"name": "potted plant"},{"supercategory": "furniture","id": 65,"name": "bed"},{"supercategory": "furniture","id": 67,"name": "dining table"},{"supercategory": "furniture","id": 70,"name": "toilet"},{"supercategory": "electronic","id": 72,"name": "tv"},{"supercategory": "electronic","id": 73,"name": "laptop"},{"supercategory": "electronic","id": 74,"name": "mouse"},{"supercategory": "electronic","id": 75,"name": "remote"},{"supercategory": "electronic","id": 76,"name": "keyboard"},{"supercategory": "electronic","id": 77,"name": "cell phone"},{"supercategory": "appliance","id": 78,"name": "microwave"},{"supercategory": "appliance","id": 79,"name": "oven"},{"supercategory": "appliance","id": 80,"name": "toaster"},{"supercategory": "appliance","id": 81,"name": "sink"},{"supercategory": "appliance","id": 82,"name": "refrigerator"},{"supercategory": "indoor","id": 84,"name": "book"},{"supercategory": "indoor","id": 85,"name": "clock"},{"supercategory": "indoor","id": 86,"name": "vase"},{"supercategory": "indoor","id": 87,"name": "scissors"},{"supercategory": "indoor","id": 88,"name": "teddy bear"},{"supercategory": "indoor","id": 89,"name": "hair drier"},{"supercategory": "indoor","id": 90,"name": "toothbrush"},{"supercategory": "indoor","id": 91,"name": "helmet"}]}
以及数据合并,是否有参考示例
谢谢解答
@DavidFangx
https://github.com/PaddlePaddle/PaddleDetection/blob/release/0.2/ppdet/data/tools/x2coco.py 这个是转换为COCO数据的,可以参考如何保存COCO的格式。
先读取2种数据格式,再合并保存。
您好,请问coco
@DavidFangx
- 请问您最终的目标是啥? 是只检测头盔吗? 如果是,为什么要和COCO合并在一起呢? 合并在一起,只有头盔的数据相比要少很多。 如果只检测头盔一类,可以用COCO的模型初始化,num_classes是1。
- 数据的合并,不是简单的拷贝在一起,需要一些代码,把2个json文件读取出来, 头盔的对应的class_num_id是多少,修正class_id等,再合并写入一个文件。
你好,请问初始化模型的链接可以提供吗
使用已有预训练模型来训练新模型,若已有预训练模型的分类为80 ,在训练新模型时,能否增加新分类,若能增加,请问怎么增加?
比如:使用这个 https://paddle-imagenet-models-name.bj.bcebos.com/DarkNet53_pretrained.tar 模型 ,该模型不包含头盔分类,可以使用这个模型来训练头盔识别?