Spaces:
Sleeping
Sleeping
Update tasks/audio.py
Browse files- 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 |
#--------------------------------------------------------------------------------------------
|