ProgramComputer commited on
Commit
5bc0d5c
·
1 Parent(s): 66e0627

Update test.py

Browse files
Files changed (1) hide show
  1. test.py +33 -33
test.py CHANGED
@@ -305,7 +305,6 @@ class VoxCeleb(datasets.GeneratorBasedBuilder):
305
  )
306
 
307
  for path in paths[conf]:
308
- raise Exception(paths)
309
  #raise Exception([x for x in Path(path).glob('**/*')])
310
  # def find_mount_point(path):
311
  # path = os.path.realpath(path)
@@ -315,35 +314,36 @@ class VoxCeleb(datasets.GeneratorBasedBuilder):
315
  # raise Exception(find_mount_point(path))
316
  #subdirs = [x[0] for x in os.walk(path)]
317
  #raise Exception(subdirs)
318
- # for file in path:
319
-
320
- #raise Exception(os.is_symlink(path))
321
- #raise Exception(os.listdir(path))
322
- try:
323
- t = tuple(path.split("::")[0].split("/")[2:])
324
- _,dataset_format,speaker,video_id,clip_index= (None,) * (5 - len(t)) + t
325
- except Exception:
326
- raise Exception(file.split("::")[0].split("/")[2:])
327
- speaker_info = meta.loc[speaker]
328
- clip_index = int(Path(clip_index).stem)
329
- info = {
330
- "file": path,
331
- "file_format": dataset_format,
332
- "dataset_id": dataset_id,
333
- "speaker_id": speaker,
334
- "speaker_gender": speaker_info["Gender"],
335
- "video_id": video_id,
336
- "clip_index": clip_index,
337
- }
338
- if dataset_id == "vox1":
339
- info["speaker_name"] = speaker_info["VGGFace1 ID"]
340
- info["speaker_nationality"] = speaker_info["Nationality"]
341
- if conf.startswith("audio"):
342
- info["audio"] = info["file"]
343
- if conf.startswith("video"):
344
- with fs.open(info["file"], 'rb') as f:
345
- #buffer = BytesIO()
346
- #f.write(buffer)
347
- info["video"] = BytesIO(f.read()).getvalue()
348
- yield key, info
349
- key += 1
 
 
305
  )
306
 
307
  for path in paths[conf]:
 
308
  #raise Exception([x for x in Path(path).glob('**/*')])
309
  # def find_mount_point(path):
310
  # path = os.path.realpath(path)
 
314
  # raise Exception(find_mount_point(path))
315
  #subdirs = [x[0] for x in os.walk(path)]
316
  #raise Exception(subdirs)
317
+ for itera in path:
318
+ for file in iter(itera):
319
+ raise Exception(iter(itera))
320
+ # #raise Exception(os.is_symlink(path))
321
+ # #raise Exception(os.listdir(path))
322
+ # try:
323
+ # t = tuple(path.split("::")[0].split("/")[2:])
324
+ # _,dataset_format,speaker,video_id,clip_index= (None,) * (5 - len(t)) + t
325
+ # except Exception:
326
+ # raise Exception(file.split("::")[0].split("/")[2:])
327
+ # speaker_info = meta.loc[speaker]
328
+ # clip_index = int(Path(clip_index).stem)
329
+ # info = {
330
+ # "file": path,
331
+ # "file_format": dataset_format,
332
+ # "dataset_id": dataset_id,
333
+ # "speaker_id": speaker,
334
+ # "speaker_gender": speaker_info["Gender"],
335
+ # "video_id": video_id,
336
+ # "clip_index": clip_index,
337
+ # }
338
+ # if dataset_id == "vox1":
339
+ # info["speaker_name"] = speaker_info["VGGFace1 ID"]
340
+ # info["speaker_nationality"] = speaker_info["Nationality"]
341
+ # if conf.startswith("audio"):
342
+ # info["audio"] = info["file"]
343
+ # if conf.startswith("video"):
344
+ # with fs.open(info["file"], 'rb') as f:
345
+ # #buffer = BytesIO()
346
+ # #f.write(buffer)
347
+ # info["video"] = BytesIO(f.read()).getvalue()
348
+ # yield key, info
349
+ # key += 1