KELONMYOSA commited on
Commit
195c1d7
1 Parent(s): b9d3d22

load script

Browse files
Files changed (1) hide show
  1. dusha.py +2 -2
dusha.py CHANGED
@@ -64,8 +64,8 @@ class Dusha(datasets.GeneratorBasedBuilder):
64
  with open(full_audio_path) as audio_file:
65
  audio = {"path": full_audio_path, "bytes": audio_file.read()}
66
  res = dict()
67
- res["file"] = "test"
68
- res["audio"] = audio
69
  res["label"] = label
70
  examples.append(res)
71
 
 
64
  with open(full_audio_path) as audio_file:
65
  audio = {"path": full_audio_path, "bytes": audio_file.read()}
66
  res = dict()
67
+ res["file"] = full_audio_path
68
+ #res["audio"] = audio
69
  res["label"] = label
70
  examples.append(res)
71