liangtm commited on
Commit
3719b26
·
verified ·
1 Parent(s): a0024c6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +56 -3
README.md CHANGED
@@ -1,3 +1,56 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - image-segmentation
5
+ language:
6
+ - en
7
+ tags:
8
+ - video
9
+ - segmentation
10
+ - object-segmentation
11
+ - referring-segmentation
12
+ size_categories:
13
+ - n<1K
14
+ ---
15
+
16
+ # Long-RVOS Dataset
17
+
18
+ 这是 Long-RVOS (Long-term Referring Video Object Segmentation) 数据集的官方 Hugging Face 仓库。
19
+
20
+ ## 数据集结构
21
+
22
+ 数据集包含以下分割:
23
+ - `train/`: 训练集
24
+ - `valid/`: 验证集
25
+ - `test/`: 测试集
26
+
27
+ 文件说明:
28
+ - **所有分割 (train/valid/test) 都包含**:
29
+ - `JPEGImages.tar.gz`: 视频帧图像
30
+ - `meta_expressions.json`: 表达式元数据
31
+ - `frame_types.json`: 帧类型信息
32
+
33
+ - **仅训练和验证集 (train/valid) 包含**:
34
+ - `Annotations.tar.gz`: 标注掩码(注意:test 集不包含标注)
35
+
36
+ ## 使用方法
37
+
38
+ 请使用提供的下载脚本:
39
+
40
+ ```bash
41
+ python scripts/download_dataset.py --repo_id iSEE-Laboratory/Long-RVOS
42
+ ```
43
+
44
+ 或使用 Hugging Face Hub API:
45
+
46
+ ```python
47
+ from huggingface_hub import snapshot_download
48
+
49
+ snapshot_download(
50
+ repo_id="iSEE-Laboratory/Long-RVOS",
51
+ repo_type="dataset",
52
+ local_dir="./data"
53
+ )
54
+ ```
55
+
56
+ 更多信息请参考项目 README。