keshan commited on
Commit
6fcd760
1 Parent(s): 81e4ce3

fixing abs path issue

Browse files
Files changed (1) hide show
  1. multispeaker-tts-sinhala.py +1 -1
multispeaker-tts-sinhala.py CHANGED
@@ -76,7 +76,7 @@ class SiTTS(datasets.GeneratorBasedBuilder):
76
  datasets.SplitGenerator(
77
  name=datasets.Split.TRAIN,
78
  gen_kwargs={
79
- "filepath": os.path.join(abs_path_to_data, "si_lk.lines.txt"),
80
  "path_to_clips": abs_path_to_clips,
81
  },
82
  ),
 
76
  datasets.SplitGenerator(
77
  name=datasets.Split.TRAIN,
78
  gen_kwargs={
79
+ "filepath": abs_path_to_data,
80
  "path_to_clips": abs_path_to_clips,
81
  },
82
  ),