typo
Browse files- CORAA-MUPE-ASR-GZ.py +3 -3
CORAA-MUPE-ASR-GZ.py
CHANGED
@@ -34,7 +34,7 @@ class MUPEASRDataset(datasets.GeneratorBasedBuilder):
|
|
34 |
"birth_state": datasets.Value("string"),
|
35 |
"birth_country": datasets.Value("string"),
|
36 |
"age": datasets.Value("int64"),
|
37 |
-
"
|
38 |
"audio_quality": datasets.Value("string"),
|
39 |
"start_time": datasets.Value("float32"),
|
40 |
"end_time": datasets.Value("float32"),
|
@@ -92,7 +92,7 @@ class MUPEASRDataset(datasets.GeneratorBasedBuilder):
|
|
92 |
birth_state = row['birth_state']
|
93 |
birth_country = row['birth_country']
|
94 |
age = row['age']
|
95 |
-
|
96 |
audio_quality = row['audio_quality']
|
97 |
start_time = row['start_time']
|
98 |
end_time = row['end_time']
|
@@ -111,7 +111,7 @@ class MUPEASRDataset(datasets.GeneratorBasedBuilder):
|
|
111 |
"birth_state" : birth_state,
|
112 |
"birth_country" : birth_country,
|
113 |
"age" : age,
|
114 |
-
"
|
115 |
"audio_quality" : audio_quality,
|
116 |
"start_time" : start_time,
|
117 |
"end_time" : end_time,
|
|
|
34 |
"birth_state": datasets.Value("string"),
|
35 |
"birth_country": datasets.Value("string"),
|
36 |
"age": datasets.Value("int64"),
|
37 |
+
"recording_year": datasets.Value("int64"),
|
38 |
"audio_quality": datasets.Value("string"),
|
39 |
"start_time": datasets.Value("float32"),
|
40 |
"end_time": datasets.Value("float32"),
|
|
|
92 |
birth_state = row['birth_state']
|
93 |
birth_country = row['birth_country']
|
94 |
age = row['age']
|
95 |
+
recording_year = row['recording_year']
|
96 |
audio_quality = row['audio_quality']
|
97 |
start_time = row['start_time']
|
98 |
end_time = row['end_time']
|
|
|
111 |
"birth_state" : birth_state,
|
112 |
"birth_country" : birth_country,
|
113 |
"age" : age,
|
114 |
+
"recording_year" : recording_year,
|
115 |
"audio_quality" : audio_quality,
|
116 |
"start_time" : start_time,
|
117 |
"end_time" : end_time,
|