sidleal commited on
Commit
7a2a535
·
verified ·
1 Parent(s): 5061419
Files changed (1) hide show
  1. 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
- "birth_year": datasets.Value("int64"),
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
- birth_year = row['birth_year']
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
- "birth_year" : birth_year,
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,