Datasets:
Fix: try get dataviewer work WIP
Browse files- _config.json → _utcd_info.json +0 -0
- utcd.py +1 -1
_config.json → _utcd_info.json
RENAMED
File without changes
|
utcd.py
CHANGED
@@ -49,7 +49,7 @@ class UtcdConfig(datasets.BuilderConfig):
|
|
49 |
return f'{prefix}{domain_str}'
|
50 |
|
51 |
|
52 |
-
with open(os_join(os.path.dirname(__file__), '
|
53 |
_config = json.load(f)
|
54 |
_split2hf_split = dict(train=datasets.Split.TRAIN, eval=datasets.Split.VALIDATION, test=datasets.Split.TEST)
|
55 |
|
|
|
49 |
return f'{prefix}{domain_str}'
|
50 |
|
51 |
|
52 |
+
with open(os_join(os.path.dirname(__file__), '_utcd_info.json')) as f:
|
53 |
_config = json.load(f)
|
54 |
_split2hf_split = dict(train=datasets.Split.TRAIN, eval=datasets.Split.VALIDATION, test=datasets.Split.TEST)
|
55 |
|