ProgramComputer commited on
Commit
369705f
1 Parent(s): 9dfdc23

Update test.py

Browse files
Files changed (1) hide show
  1. test.py +2 -7
test.py CHANGED
@@ -307,14 +307,9 @@ class VoxCeleb(datasets.GeneratorBasedBuilder):
307
  engine="python",
308
  )
309
  raise Exception(paths)
310
- for path in paths[conf]:
311
  for file in path:
312
- def find_mount_point(path):
313
- path = os.path.realpath(path)
314
- while not os.path.ismount(path):
315
- path = os.path.dirname(path)
316
- return path
317
- raise Exception(find_mount_point(path))
318
  subdirs = [x[0] for x in os.walk(path)]
319
  raise Exception(subdirs)
320
  raise Exception(path)
 
307
  engine="python",
308
  )
309
  raise Exception(paths)
310
+ for path in paths[conf].values():
311
  for file in path:
312
+
 
 
 
 
 
313
  subdirs = [x[0] for x in os.walk(path)]
314
  raise Exception(subdirs)
315
  raise Exception(path)