ImenMourali commited on
Commit
8ac3d53
·
verified ·
1 Parent(s): b321cd2

Update tasks/audio.py

Browse files
Files changed (1) hide show
  1. tasks/audio.py +1 -11
tasks/audio.py CHANGED
@@ -239,17 +239,7 @@ for audio_data in test_dataset["audio"]:
239
 
240
  print("Predictions:", predictions)
241
 
242
- def map_predictions_to_labels(predictions):
243
- """
244
- Maps string predictions to numeric labels:
245
- - "chainsaw" -> 0
246
- - any other class -> 1
247
- Args:
248
- predictions (list of str): List of class name predictions.
249
- Returns:
250
- list of int: Mapped numeric labels.
251
- """
252
- return [0 if pred == "chainsaw" else 1 for pred in predictions]
253
 
254
  #--------------------------------------------------------------------------------------------
255
  # YOUR MODEL INFERENCE STOPS HERE
 
239
 
240
  print("Predictions:", predictions)
241
 
242
+
 
 
 
 
 
 
 
 
 
 
243
 
244
  #--------------------------------------------------------------------------------------------
245
  # YOUR MODEL INFERENCE STOPS HERE