Datasets:
Fix: try get dataviewer work WIP
Browse files- config.json → _config.json +0 -0
- utcd.py +1 -1
config.json → _config.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__), '_config.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 |
|