Add task category and sample usage to dataset card
#2
by
nielsr
HF Staff
- opened
README.md
CHANGED
@@ -1,15 +1,17 @@
|
|
1 |
---
|
2 |
-
configs:
|
3 |
-
- config_name: default
|
4 |
-
data_files:
|
5 |
-
- split: test
|
6 |
-
path: viewer.jsonl
|
7 |
license: cc-by-nc-sa-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
tags:
|
9 |
- Video
|
10 |
- Segmentation
|
11 |
-
|
12 |
-
-
|
13 |
---
|
14 |
|
15 |
# SeC: Advancing Complex Video Object Segmentation via Progressive Concept Construction
|
@@ -38,6 +40,21 @@ We propose the Semantic Complex Scenarios Video Object Segmentation (SeCVOS) ben
|
|
38 |
| LVOS | 140 | 78.36 | 7.8% | 1.47 |
|
39 |
| **SeCVOS (ours)** | 160 | 29.36 | 30.2% | **4.26** |
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
## License
|
42 |
Our annotations are licensed under a [CC BY-NC-SA 4.0 License](https://creativecommons.org/licenses/by-nc-sa/4.0/). They are available strictly for non-commercial research.
|
43 |
|
@@ -55,4 +72,4 @@ If you find this project useful in your research, please consider citing:
|
|
55 |
journal = {arXiv preprint arXiv:2507.15852},
|
56 |
year = {2025}
|
57 |
}
|
58 |
-
```
|
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
2 |
license: cc-by-nc-sa-4.0
|
3 |
+
size_categories:
|
4 |
+
- n<1K
|
5 |
+
configs:
|
6 |
+
- config_name: default
|
7 |
+
data_files:
|
8 |
+
- split: test
|
9 |
+
path: viewer.jsonl
|
10 |
tags:
|
11 |
- Video
|
12 |
- Segmentation
|
13 |
+
task_categories:
|
14 |
+
- image-segmentation
|
15 |
---
|
16 |
|
17 |
# SeC: Advancing Complex Video Object Segmentation via Progressive Concept Construction
|
|
|
40 |
| LVOS | 140 | 78.36 | 7.8% | 1.47 |
|
41 |
| **SeCVOS (ours)** | 160 | 29.36 | 30.2% | **4.26** |
|
42 |
|
43 |
+
## Sample Usage
|
44 |
+
|
45 |
+
You can load the dataset using the Hugging Face `datasets` library:
|
46 |
+
|
47 |
+
```python
|
48 |
+
from datasets import load_dataset
|
49 |
+
|
50 |
+
# Load the test split of the SeCVOS dataset
|
51 |
+
dataset = load_dataset("OpenIXCLab/SeCVOS", split="test")
|
52 |
+
|
53 |
+
# Explore the dataset
|
54 |
+
print(dataset)
|
55 |
+
print(dataset[0])
|
56 |
+
```
|
57 |
+
|
58 |
## License
|
59 |
Our annotations are licensed under a [CC BY-NC-SA 4.0 License](https://creativecommons.org/licenses/by-nc-sa/4.0/). They are available strictly for non-commercial research.
|
60 |
|
|
|
72 |
journal = {arXiv preprint arXiv:2507.15852},
|
73 |
year = {2025}
|
74 |
}
|
75 |
+
```
|