Instance Segmentation performance?
See original GitHub issueHi, I use the following command to train instance segmentation
python -m torch.distributed.launch --nproc_per_node=4 --use_en main.py --epochs 25 --lr_drop 15 --coco_path $COCO/data --frozen_weights pretrained/detr-r50-e632da11.pth --batch_size 2 --masks --no_aux_loss
The trained model only has a Seg AP of 24.7, is the normal?
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
Instance Segmentation | Papers With Code
Instance Segmentation. 668 papers with code • 22 benchmarks • 61 datasets. Instance segmentation is the task of detecting and delineating each distinct ......
Read more >What Is Instance Segmentation? [2022 Guide & Tutorial]
Instance segmentation is the task of detecting and segmenting objects in images. See different approaches to instance segmentation, including Mask R-CNN.
Read more >A Survey on Instance Segmentation: State of the art - arXiv
The performance of their model is comparable to other state of the art models. 3.7. Non-local Neural Networks. Page 11. Non-local means [4] ......
Read more >High-Performance Instance Segmentation With Box Annotations
We present a high-performance method that can achieve mask-level instance segmentation with only bounding-box annotations for training.
Read more >Benchmarking Deep Learning Models for Instance ... - MDPI
Instance segmentation has gained attention in various computer vision fields, such as autonomous driving, drone control, and sports analysis.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Final performance: IoU metric: segm Average Precision (AP) @[ IoU=0.50:0.95 | area= all | maxDets=100 ] = 0.332 Average Precision (AP) @[ IoU=0.50 | area= all | maxDets=100 ] = 0.565 Average Precision (AP) @[ IoU=0.75 | area= all | maxDets=100 ] = 0.339 Average Precision (AP) @[ IoU=0.50:0.95 | area= small | maxDets=100 ] = 0.135 Average Precision (AP) @[ IoU=0.50:0.95 | area=medium | maxDets=100 ] = 0.368 Average Precision (AP) @[ IoU=0.50:0.95 | area= large | maxDets=100 ] = 0.531 Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets= 1 ] = 0.280 Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets= 10 ] = 0.433 Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets=100 ] = 0.462 Average Recall (AR) @[ IoU=0.50:0.95 | area= small | maxDets=100 ] = 0.234 Average Recall (AR) @[ IoU=0.50:0.95 | area=medium | maxDets=100 ] = 0.515 Average Recall (AR) @[ IoU=0.50:0.95 | area= large | maxDets=100 ] = 0.666
Hi @alcinos , I wonder what is the instance segmentation head is used here? Is it a transformer-based or conv-based? Thank you for your consideration.