raffaelsiregar commited on
Commit
51d9b91
·
verified ·
1 Parent(s): e6cc02d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -68,8 +68,8 @@ class CNN1DLSTMAudioClassifier(nn.Module):
68
 
69
  num_class = 6
70
  model = CNN1DLSTMAudioClassifier(num_class)
71
-
72
- model.load_state_dict(torch.load("best-model-emotion-recognition.bin", weights_only=False))
73
  model.eval()
74
 
75
  def preprocess_single_audio(file_path, sample_rate=16000, n_mels=128, n_fft=2048, hop_length=512):
@@ -135,8 +135,8 @@ def decode_emotion_prediction(prediction_tensor, label_encoder):
135
 
136
  return predicted_emotion, confidence
137
 
138
- device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
139
- model = model.to(device)
140
 
141
  def predict(wave):
142
  wave = preprocess_single_audio(wave)
 
68
 
69
  num_class = 6
70
  model = CNN1DLSTMAudioClassifier(num_class)
71
+ device = torch.device('cpu')
72
+ model.load_state_dict(torch.load("best-model-emotion-recognition.bin", weights_only=True, map_location=device))
73
  model.eval()
74
 
75
  def preprocess_single_audio(file_path, sample_rate=16000, n_mels=128, n_fft=2048, hop_length=512):
 
135
 
136
  return predicted_emotion, confidence
137
 
138
+ # device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
139
+ # model = model.to(device)
140
 
141
  def predict(wave):
142
  wave = preprocess_single_audio(wave)