Add task category and improve metadata

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +16 -6
README.md CHANGED
@@ -1,16 +1,18 @@
1
  ---
2
- license: apache-2.0
3
  language:
4
  - en
5
  - cn
 
 
 
 
 
 
6
  tags:
7
  - multimodal
8
  - search
9
  - video-object-segmentation
10
  - reasoning
11
- pretty_name: OK-VOS
12
- size_categories:
13
- - 1K<n<10K
14
  ---
15
 
16
  # OK-VOS: A Video Object Segmentation Benchmark Requiring Outside Knowledge
@@ -39,7 +41,15 @@ data/OK_VOS/
39
 
40
  ## ⚙️ How to Use
41
 
42
- Please refer to our repo: https://github.com/iSEE-Laboratory/Seg-ReSearch
 
 
 
 
 
 
 
 
43
 
44
  ## 📜 Citation
45
  If you find this dataset useful, please cite our paper:
@@ -51,4 +61,4 @@ author={Tianming Liang and Qirui Du and Jian-Fang Hu and Haichao Jiang and Ziche
51
  journal={arXiv preprint arXiv:2602.04454},
52
  year={2026}
53
  }
54
- ```
 
1
  ---
 
2
  language:
3
  - en
4
  - cn
5
+ license: apache-2.0
6
+ size_categories:
7
+ - 1K<n<10K
8
+ pretty_name: OK-VOS
9
+ task_categories:
10
+ - image-segmentation
11
  tags:
12
  - multimodal
13
  - search
14
  - video-object-segmentation
15
  - reasoning
 
 
 
16
  ---
17
 
18
  # OK-VOS: A Video Object Segmentation Benchmark Requiring Outside Knowledge
 
41
 
42
  ## ⚙️ How to Use
43
 
44
+ To prepare the dataset for training or evaluation using the scripts from the [official repository](https://github.com/iSEE-Laboratory/Seg-ReSearch), you can run the following preprocessing commands:
45
+
46
+ ```bash
47
+ # Training Set Preprocessing
48
+ python examples/data_preprocess/okvos.py --split train --num_frames 6 --max_size 448 --min_size 448 --model_type Qwen3VL
49
+
50
+ # Test set Preprocessing
51
+ python examples/data_preprocess/okvos.py --split test --num_frames 6 --max_size 448 --min_size 448 --model_type Qwen3VL
52
+ ```
53
 
54
  ## 📜 Citation
55
  If you find this dataset useful, please cite our paper:
 
61
  journal={arXiv preprint arXiv:2602.04454},
62
  year={2026}
63
  }
64
+ ```