Update NURC-SP_ENTOA_TTS.py
Browse files- NURC-SP_ENTOA_TTS.py +1 -1
NURC-SP_ENTOA_TTS.py
CHANGED
@@ -111,7 +111,7 @@ class NurcSPDataset(GeneratorBasedBuilder):
|
|
111 |
with open(prompts_path, "r") as f:
|
112 |
csv_reader = csv.DictReader(f)
|
113 |
for row in csv_reader:
|
114 |
-
file_path = Path(row['
|
115 |
examples[file_path] = {
|
116 |
"path": row['path'],
|
117 |
"name": row['name'],
|
|
|
111 |
with open(prompts_path, "r") as f:
|
112 |
csv_reader = csv.DictReader(f)
|
113 |
for row in csv_reader:
|
114 |
+
file_path = Path(row['path']).as_posix()
|
115 |
examples[file_path] = {
|
116 |
"path": row['path'],
|
117 |
"name": row['name'],
|