Datasets:
Tasks:
Automatic Speech Recognition
Formats:
parquet
Languages:
English
Size:
1M - 10M
ArXiv:
License:
Commit
•
fe1a6b8
1
Parent(s):
c3c6e9d
fix super
Browse files- peoples_speech.py +1 -1
peoples_speech.py
CHANGED
@@ -76,7 +76,7 @@ _MANIFEST_URL = _BASE_URL + "{split}/{config}.json"
|
|
76 |
class PeoplesSpeechConfig(datasets.BuilderConfig):
|
77 |
|
78 |
def __init__(self, *args, **kwargs):
|
79 |
-
super.__init__(*args, **kwargs)
|
80 |
|
81 |
|
82 |
class PeoplesSpeech(datasets.GeneratorBasedBuilder):
|
|
|
76 |
class PeoplesSpeechConfig(datasets.BuilderConfig):
|
77 |
|
78 |
def __init__(self, *args, **kwargs):
|
79 |
+
super().__init__(*args, **kwargs)
|
80 |
|
81 |
|
82 |
class PeoplesSpeech(datasets.GeneratorBasedBuilder):
|