Argus-Lite detection: COCO val2017 mAP 0.273 / AP@50 0.496 / AR@100 0.432
Browse files- README.md +2 -2
- coco_val_eval.json +16 -0
README.md
CHANGED
|
@@ -58,7 +58,7 @@ All four heads trained on pre-cached ViT-S features produced by a single forward
|
|
| 58 |
| Classifier | ImageNet-1k train | 224 px CLS token | SGD, lr 30, WD 0, cosine, 30 epochs | 82.87 % train top-1 / **79.13 % val top-1 / 95.53 % val top-5** |
|
| 59 |
| Segmentation | ADE20K (20,210 train / 2,000 val) | 512 px, 32脳32 grid | AdamW, lr 1e-3, 5 epochs | mIoU 0.417 |
|
| 60 |
| Depth | NYUv2 (32K train / 5K val) | 416 px, 26脳26 grid, 256-bin | SILog, AdamW, lr 1e-4, 3 epochs | RMSE 0.715 |
|
| 61 |
-
| Detection | COCO train 2017 (117 K) | 768 px, 48脳48 grid | FCOS targets, AdamW, lr 1e-4, 2 epochs |
|
| 62 |
|
| 63 |
Training logs per head live alongside the weights (`*_training_log.json`).
|
| 64 |
|
|
@@ -90,7 +90,7 @@ Per-domain numbers live in `rf100vl_results.json`.
|
|
| 90 |
## Evaluation details
|
| 91 |
|
| 92 |
- Classifier val top-1 is **79.13 %**, top-5 **95.53 %** on 50K ImageNet val 2012 images, using the TensorFlow Models repo's synset-label mapping for ground truth. Above the EUPE-ViT-S paper kNN baseline (78.2).
|
| 93 |
-
- Detection head
|
| 94 |
- Depth head here is a BN + two-conv + 256-bin variant. A full DPT decoder reassembling the four hooked block activations from the cache is the natural next iteration.
|
| 95 |
- Segmentation head is a linear probe at 5 epochs; the EUPE-ViT-S paper reports mIoU 0.466 at a much longer schedule.
|
| 96 |
|
|
|
|
| 58 |
| Classifier | ImageNet-1k train | 224 px CLS token | SGD, lr 30, WD 0, cosine, 30 epochs | 82.87 % train top-1 / **79.13 % val top-1 / 95.53 % val top-5** |
|
| 59 |
| Segmentation | ADE20K (20,210 train / 2,000 val) | 512 px, 32脳32 grid | AdamW, lr 1e-3, 5 epochs | mIoU 0.417 |
|
| 60 |
| Depth | NYUv2 (32K train / 5K val) | 416 px, 26脳26 grid, 256-bin | SILog, AdamW, lr 1e-4, 3 epochs | RMSE 0.715 |
|
| 61 |
+
| Detection | COCO train 2017 (117 K) | 768 px, 48脳48 grid | FCOS targets, AdamW, lr 1e-4, 2 epochs | **COCO val2017 mAP 27.3** (AP@50 49.6 路 AR@100 43.2); RF100-VL AR@100 0.266 (20-domain subset) |
|
| 62 |
|
| 63 |
Training logs per head live alongside the weights (`*_training_log.json`).
|
| 64 |
|
|
|
|
| 90 |
## Evaluation details
|
| 91 |
|
| 92 |
- Classifier val top-1 is **79.13 %**, top-5 **95.53 %** on 50K ImageNet val 2012 images, using the TensorFlow Models repo's synset-label mapping for ground truth. Above the EUPE-ViT-S paper kNN baseline (78.2).
|
| 93 |
+
- Detection head: COCO val2017 mAP 0.273 (AP@50 0.496, AP@75 0.268, AR@100 0.432). See `coco_val_eval.json` for the full breakdown including per-size AP.
|
| 94 |
- Depth head here is a BN + two-conv + 256-bin variant. A full DPT decoder reassembling the four hooked block activations from the cache is the natural next iteration.
|
| 95 |
- Segmentation head is a linear probe at 5 epochs; the EUPE-ViT-S paper reports mIoU 0.466 at a much longer schedule.
|
| 96 |
|
coco_val_eval.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"AP_0.5_0.95": 0.27296165044742066,
|
| 3 |
+
"AP_0.5": 0.49611133070799174,
|
| 4 |
+
"AP_0.75": 0.2683562201186404,
|
| 5 |
+
"AP_small": 0.1348535251743501,
|
| 6 |
+
"AP_medium": 0.2942910951580116,
|
| 7 |
+
"AP_large": 0.3935789222521886,
|
| 8 |
+
"AR_maxDets_1": 0.2496661617343009,
|
| 9 |
+
"AR_maxDets_10": 0.40529583390755014,
|
| 10 |
+
"AR_maxDets_100": 0.43203417814208595,
|
| 11 |
+
"AR_small": 0.24303236448644558,
|
| 12 |
+
"AR_medium": 0.4745727259450976,
|
| 13 |
+
"AR_large": 0.5823425288609941,
|
| 14 |
+
"n_images": 5000,
|
| 15 |
+
"n_predictions": 291404
|
| 16 |
+
}
|