Add README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: pytorch
|
| 4 |
+
pipeline_tag: image-segmentation
|
| 5 |
+
tags:
|
| 6 |
+
- 3d-instance-segmentation
|
| 7 |
+
- scannetpp
|
| 8 |
+
- scannet
|
| 9 |
+
- competitorformer
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# CompetitorFormer Checkpoints
|
| 13 |
+
|
| 14 |
+
Official weights for **CompetitorFormer** (CVPR 2026).
|
| 15 |
+
|
| 16 |
+
Code: [https://github.com/DuanchuWang/CompetitorFormer](https://github.com/DuanchuWang/CompetitorFormer)
|
| 17 |
+
|
| 18 |
+
## ScanNet++ fair val
|
| 19 |
+
|
| 20 |
+
| File | Original training save | AP / AP50 / AP25 | `num_query` |
|
| 21 |
+
| --- | --- | --- | ---: |
|
| 22 |
+
| [`competitorformer_scannetpp.pth`](https://huggingface.co/WangDuanchu/CompetitorFormer/resolve/main/competitorformer_scannetpp.pth) | `epoch490_AP_0.3335_0.4725_0.5640.pth` | **0.3335 / 0.4725 / 0.5640** | 500 |
|
| 23 |
+
|
| 24 |
+
This is the official ScanNet++ fair val checkpoint (50-scene `nvs_sem_val` split).
|
| 25 |
+
|
| 26 |
+
```bash
|
| 27 |
+
wget https://huggingface.co/WangDuanchu/CompetitorFormer/resolve/main/competitorformer_scannetpp.pth \
|
| 28 |
+
-O checkpoints/competitorformer_scannetpp.pth
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
or:
|
| 32 |
+
|
| 33 |
+
```bash
|
| 34 |
+
huggingface-cli download WangDuanchu/CompetitorFormer competitorformer_scannetpp.pth --local-dir checkpoints
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## ScanNet v2 fair val (optional)
|
| 38 |
+
|
| 39 |
+
| File | Original training save | AP / AP50 / AP25 | `num_query` |
|
| 40 |
+
| --- | --- | --- | ---: |
|
| 41 |
+
| [`competitorformer_scannet.pth`](https://huggingface.co/WangDuanchu/CompetitorFormer/resolve/main/competitorformer_scannet.pth) | `epoch440_AP_0.6276_0.8072_0.8718.pth` | **0.6276 / 0.8072 / 0.8718** | 400 |
|
| 42 |
+
|
| 43 |
+
See the GitHub README for evaluation commands and data preparation.
|