Kurt Stolle commited on
Commit
4ef07a1
·
2 Parent(s): 889da18 acb8fec

Merge branch 'main' of https://huggingface.co/datasets/khwstolle/csvps

Browse files
Files changed (1) hide show
  1. README.md +11 -13
README.md CHANGED
@@ -6,15 +6,14 @@ tags:
6
  - webdataset
7
  - pandas
8
  - unipercept
9
- configs:
10
- - config_name: default
11
- data_files:
12
- - split: train
13
- path: data/train/**/*
14
- - split: val
15
- path: data/val/**/*
16
- - split: test
17
- path: data/test/**/*
18
  ---
19
 
20
  # Cityscapes VPS
@@ -105,7 +104,7 @@ Due to the structure, the dataset can be easily loaded using the `webdataset` li
105
  To convert the `train`, `val` and `test` directories into a `tar` archive, run the following command:
106
 
107
  ```bash
108
- for split in train val test; do tar -cf "shards/csvps-$split-000001.tar" "data/$split" done
109
  ```
110
 
111
  Subsequently, the dataset can be loaded using the `webdataset` library:
@@ -113,7 +112,7 @@ Subsequently, the dataset can be loaded using the `webdataset` library:
113
  ```python
114
  import webdataset as wds
115
 
116
- dataset = wds.WebDataset("shards/csvps-train-{000001}.tar")
117
  ```
118
 
119
 
@@ -135,5 +134,4 @@ If you use this dataset in your research, please cite the original
135
 
136
  [^2]: Kim et al., "Video Panoptic Segmentation" (CVPR 2020)
137
 
138
- [^3]: Qiao et al., "Learning Visual Perception with Depth-aware Video Panoptic Segmentation" (CVPR 2021)
139
-
 
6
  - webdataset
7
  - pandas
8
  - unipercept
9
+ license: afl-3.0
10
+ task_categories:
11
+ - depth-estimation
12
+ - image-segmentation
13
+ - video-classification
14
+ - object-detection
15
+ size_categories:
16
+ - 10K<n<100K
 
17
  ---
18
 
19
  # Cityscapes VPS
 
104
  To convert the `train`, `val` and `test` directories into a `tar` archive, run the following command:
105
 
106
  ```bash
107
+ for split in train val test; do tar -cf "shards/csvps-$split-000000.tar" "data/$split" done
108
  ```
109
 
110
  Subsequently, the dataset can be loaded using the `webdataset` library:
 
112
  ```python
113
  import webdataset as wds
114
 
115
+ dataset = wds.WebDataset("shards/csvps-train-{000000}.tar")
116
  ```
117
 
118
 
 
134
 
135
  [^2]: Kim et al., "Video Panoptic Segmentation" (CVPR 2020)
136
 
137
+ [^3]: Qiao et al., "Learning Visual Perception with Depth-aware Video Panoptic Segmentation" (CVPR 2021)