Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,23 +1,31 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
```
|
| 8 |
|
| 9 |
-
|
| 10 |
|
| 11 |
```bash
|
|
|
|
| 12 |
unzip data/JPEGImages.zip -d data
|
| 13 |
unzip data/Annotations.zip -d data
|
| 14 |
```
|
| 15 |
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
```text
|
| 19 |
-
|
| 20 |
-
Annotations.zip
|
| 21 |
-
favos-20.txt
|
| 22 |
-
favos-40.txt
|
| 23 |
```
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- video-object-segmentation
|
| 5 |
+
- video-segmentation
|
| 6 |
+
- evaluation
|
| 7 |
+
---
|
| 8 |
|
| 9 |
+
# FaVOS
|
| 10 |
|
| 11 |
+
FaVOS evaluation uses the first annotated frame as the prompt frame. Metrics are
|
| 12 |
+
computed on the remaining frames only.
|
|
|
|
| 13 |
|
| 14 |
+
Download the dataset:
|
| 15 |
|
| 16 |
```bash
|
| 17 |
+
huggingface-cli download FaVOSsubmission/FaVOS --repo-type dataset --local-dir data
|
| 18 |
unzip data/JPEGImages.zip -d data
|
| 19 |
unzip data/Annotations.zip -d data
|
| 20 |
```
|
| 21 |
|
| 22 |
+
Dataset files are available at:
|
| 23 |
+
https://huggingface.co/datasets/FaVOSsubmission/FaVOS/tree/main
|
| 24 |
+
|
| 25 |
+
Evaluate predictions against:
|
| 26 |
|
| 27 |
```text
|
| 28 |
+
data/Annotations/<video_id>/<frame>.png
|
|
|
|
|
|
|
|
|
|
| 29 |
```
|
| 30 |
+
|
| 31 |
+
Use `favos-20.txt` and `favos-40.txt` as the evaluation splits.
|