updated
Browse files- release_stats.py +7 -4
- test01.py +1 -0
release_stats.py
CHANGED
|
@@ -2,11 +2,14 @@ STATS = {
|
|
| 2 |
"name": "Librivox-Indonesia",
|
| 3 |
"bundleURLTemplate": "https://huggingface.co/datasets/cahya/test01/resolve/main/audio.tgz",
|
| 4 |
"version": "1.0.0",
|
| 5 |
-
"date": "",
|
| 6 |
"locales": {
|
| 7 |
-
"bal": {'reportedSentences': 261, 'duration': 196639788, 'clips': 48373, 'users': 416,
|
| 8 |
-
|
| 9 |
-
"
|
|
|
|
|
|
|
|
|
|
| 10 |
},
|
| 11 |
'totalDuration': 72782088097, 'totalHrs': 20217
|
| 12 |
}
|
|
|
|
| 2 |
"name": "Librivox-Indonesia",
|
| 3 |
"bundleURLTemplate": "https://huggingface.co/datasets/cahya/test01/resolve/main/audio.tgz",
|
| 4 |
"version": "1.0.0",
|
| 5 |
+
"date": "2022-09-04",
|
| 6 |
"locales": {
|
| 7 |
+
"bal": {'reportedSentences': 261, 'duration': 196639788, 'clips': 48373, 'users': 416,
|
| 8 |
+
'size': 1253048208, 'avgDurationSecs': 4.065, 'totalHrs': 54.62},
|
| 9 |
+
"sun": {'reportedSentences': 261, 'duration': 196639788, 'clips': 48373, 'users': 416,
|
| 10 |
+
'size': 1253048208, 'avgDurationSecs': 4.065, 'totalHrs': 54.62},
|
| 11 |
+
"all": {'reportedSentences': 261, 'duration': 196639788, 'clips': 48373, 'users': 416,
|
| 12 |
+
'size': 1253048208, 'avgDurationSecs': 4.065, 'totalHrs': 54.62},
|
| 13 |
},
|
| 14 |
'totalDuration': 72782088097, 'totalHrs': 20217
|
| 15 |
}
|
test01.py
CHANGED
|
@@ -38,6 +38,7 @@ class Test01Config(datasets.BuilderConfig):
|
|
| 38 |
"""BuilderConfig for Test01."""
|
| 39 |
|
| 40 |
def __init__(self, name, version, **kwargs):
|
|
|
|
| 41 |
self.language = kwargs.pop("language", None)
|
| 42 |
self.release_date = kwargs.pop("release_date", None)
|
| 43 |
self.num_clips = kwargs.pop("num_clips", None)
|
|
|
|
| 38 |
"""BuilderConfig for Test01."""
|
| 39 |
|
| 40 |
def __init__(self, name, version, **kwargs):
|
| 41 |
+
print("## Kwargs", kwargs)
|
| 42 |
self.language = kwargs.pop("language", None)
|
| 43 |
self.release_date = kwargs.pop("release_date", None)
|
| 44 |
self.num_clips = kwargs.pop("num_clips", None)
|