kalebu commited on
Commit
3bd0279
1 Parent(s): 6518e15

updated get_wave_label()

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -15,7 +15,8 @@ from tensorflow.keras.layers import Dense, Dropout, Flatten, Conv2D, MaxPool2D,
15
  def get_waveform_label(file):
16
  #lab = tf.strings.split(file, os.path.sep)[-2]
17
  print(file)
18
- audio_binary = tf.io.read_file(file)
 
19
  audio, _ = tf.audio.decode_wav(audio_binary)
20
  waveform=tf.squeeze(audio, axis=-1)
21
  return waveform
 
15
  def get_waveform_label(file):
16
  #lab = tf.strings.split(file, os.path.sep)[-2]
17
  print(file)
18
+ print(file.name)
19
+ audio_binary = tf.io.read_file(file.name)
20
  audio, _ = tf.audio.decode_wav(audio_binary)
21
  waveform=tf.squeeze(audio, axis=-1)
22
  return waveform