phongdtd commited on
Commit
51130c8
·
1 Parent(s): a377f51

init commit

Browse files
Files changed (1) hide show
  1. VinDataVLSP.py +1 -1
VinDataVLSP.py CHANGED
@@ -146,7 +146,7 @@ class VinDataVLSP(datasets.GeneratorBasedBuilder):
146
  df = df.dropna()
147
  chars_to_ignore_regex = r'[,?.!\-;:"“%\'�]'
148
 
149
- for file_path, script, duration in zip(df["file_path"], df["script"], df["duration"]):
150
  # set full path for mp3 audio file
151
  audio_path = path_to_clips + "/" + file_path
152
 
 
146
  df = df.dropna()
147
  chars_to_ignore_regex = r'[,?.!\-;:"“%\'�]'
148
 
149
+ for file_path, script in zip(df["file_path"], df["script"]):
150
  # set full path for mp3 audio file
151
  audio_path = path_to_clips + "/" + file_path
152