THP2903 commited on
Commit
79cc662
·
verified ·
1 Parent(s): 359e288

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ emotion_labels = {0: 'neutral', 1: 'calm', 2: 'happy', 3: 'sad', 4: 'angry', 5:
9
 
10
  def process_video_audio(video_path, audio_path):
11
 
12
- wav = pt.tensor(audio_path[1], dtype = pt.float16)
13
 
14
  train_visual = np.zeros([1, 120, 120, 3, 10])
15
  train_audio_wave = np.zeros([1, 261540])
 
9
 
10
  def process_video_audio(video_path, audio_path):
11
 
12
+ wav = pt.Tensor(audio_path[1], dtype = pt.float16)
13
 
14
  train_visual = np.zeros([1, 120, 120, 3, 10])
15
  train_audio_wave = np.zeros([1, 261540])