Update dataset.py
Browse files- dataset.py +3 -0
dataset.py
CHANGED
@@ -44,6 +44,9 @@ class CustomDataset(datasets.GeneratorBasedBuilder):
|
|
44 |
print(audio_path)
|
45 |
print(csv_path)
|
46 |
key = 0
|
|
|
|
|
|
|
47 |
with open(csv_path, encoding="utf-8") as csv_file:
|
48 |
csv_reader = csv.DictReader(csv_file)
|
49 |
for row in csv_reader:
|
|
|
44 |
print(audio_path)
|
45 |
print(csv_path)
|
46 |
key = 0
|
47 |
+
with open(audio_path, encoding="utf-8") as za:
|
48 |
+
print(za)
|
49 |
+
|
50 |
with open(csv_path, encoding="utf-8") as csv_file:
|
51 |
csv_reader = csv.DictReader(csv_file)
|
52 |
for row in csv_reader:
|