aburnazyan commited on
Commit
eec169b
1 Parent(s): 1df0862
Files changed (1) hide show
  1. hy_asr_grqaser.py +1 -1
hy_asr_grqaser.py CHANGED
@@ -38,7 +38,7 @@ class HyAsrGrqaser(GeneratorBasedBuilder):
38
  # Generate examples
39
  for idx, row in metadata.iterrows():
40
  file_path = os.path.join(data_dir, row['file_name'])
41
- transcription_path = os.path.join(data_dir, row['transcription_file'])
42
  with open(transcription_path, 'r') as f:
43
  transcription = f.read().strip()
44
  yield idx, {
 
38
  # Generate examples
39
  for idx, row in metadata.iterrows():
40
  file_path = os.path.join(data_dir, row['file_name'])
41
+ transcription_path = os.path.join(data_dir, row['transcription'])
42
  with open(transcription_path, 'r') as f:
43
  transcription = f.read().strip()
44
  yield idx, {