karolyartur commited on
Commit
9d8cb08
1 Parent(s): ba7b8ac

Change download url

Browse files
Files changed (1) hide show
  1. SMVB.py +3 -1
SMVB.py CHANGED
@@ -57,6 +57,8 @@ _BASE_URL = "https://huggingface.co/datasets/ABC-iRobotics/SMVB/resolve/main/dat
57
 
58
  _VERSION = '1.0.0'
59
 
 
 
60
 
61
  # ---- SMVB dataset Configs ----
62
 
@@ -95,7 +97,7 @@ class SMVBDataset(datasets.GeneratorBasedBuilder):
95
  SMVBDatasetConfig(
96
  name = "all",
97
  description = "Photorealistic synthetic images",
98
- data_urls = [_BASE_URL],
99
  version = _VERSION
100
  ),
101
  ]
 
57
 
58
  _VERSION = '1.0.0'
59
 
60
+ _SCENES = ['car']
61
+
62
 
63
  # ---- SMVB dataset Configs ----
64
 
 
97
  SMVBDatasetConfig(
98
  name = "all",
99
  description = "Photorealistic synthetic images",
100
+ data_urls = [_BASE_URL + '/' + s + '.tar.gz' for s in _SCENES],
101
  version = _VERSION
102
  ),
103
  ]