init commit
Browse files- 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
|
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 |
|