Commit
·
fae71f2
1
Parent(s):
07e136e
test
Browse files- libri_light.py +3 -0
libri_light.py
CHANGED
@@ -146,7 +146,10 @@ class LibriLight(datasets.GeneratorBasedBuilder):
|
|
146 |
|
147 |
def _generate_examples(self, archive_path):
|
148 |
paths = glob.glob(os.path.join(archive_path, "**", "**", "*.flac"))
|
|
|
|
|
149 |
print("LEN PATHS: ", len(paths))
|
|
|
150 |
print(paths[0])
|
151 |
for key, path in enumerate(paths):
|
152 |
path_split = path.split("/")
|
|
|
146 |
|
147 |
def _generate_examples(self, archive_path):
|
148 |
paths = glob.glob(os.path.join(archive_path, "**", "**", "*.flac"))
|
149 |
+
print("")
|
150 |
+
print("ARCHIVE PATH: ", archive_path)
|
151 |
print("LEN PATHS: ", len(paths))
|
152 |
+
print("")
|
153 |
print(paths[0])
|
154 |
for key, path in enumerate(paths):
|
155 |
path_split = path.split("/")
|