Zw07 commited on
Commit
3075975
·
verified ·
1 Parent(s): ddb79d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -166,7 +166,7 @@ def main():
166
 
167
  #RuntimeError: Numpy is not available
168
  wav = torch.from_numpy(wav3) #/32768.0
169
- wav = audio.unsqueeze(0).unsqueeze(0)
170
  st.markdown("Before unsqueeze mp3")
171
  st.markdown(wav)
172
 
 
166
 
167
  #RuntimeError: Numpy is not available
168
  wav = torch.from_numpy(wav3) #/32768.0
169
+ wav = wav.unsqueeze(0).unsqueeze(0)
170
  st.markdown("Before unsqueeze mp3")
171
  st.markdown(wav)
172