AB739 commited on
Commit
079338f
·
verified ·
1 Parent(s): 463142f

Update tasks/audio.py

Browse files
Files changed (1) hide show
  1. tasks/audio.py +0 -2
tasks/audio.py CHANGED
@@ -210,8 +210,6 @@ async def evaluate_audio(request: AudioEvaluationRequest):
210
  output = model(data).squeeze()
211
  pred = torch.argmax(output, dim=-1)
212
  predictions.extend(pred.tolist())
213
-
214
- print("predictions:", predictions)
215
  #--------------------------------------------------------------------------------------------
216
  # YOUR MODEL INFERENCE STOPS HERE
217
  #--------------------------------------------------------------------------------------------
 
210
  output = model(data).squeeze()
211
  pred = torch.argmax(output, dim=-1)
212
  predictions.extend(pred.tolist())
 
 
213
  #--------------------------------------------------------------------------------------------
214
  # YOUR MODEL INFERENCE STOPS HERE
215
  #--------------------------------------------------------------------------------------------