Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,8 @@ from transformers import pipeline
|
|
6 |
classifier = pipeline(task="zero-shot-audio-classification", model="mskov/roberta-base-toxicity")
|
7 |
classifier = pipeline(model="mskov/roberta-base-toxicity")
|
8 |
|
9 |
-
|
10 |
-
|
11 |
|
12 |
predicted_label = result[0]["label"]
|
13 |
print(f"Predicted label: {predicted_label}")
|
|
|
6 |
classifier = pipeline(task="zero-shot-audio-classification", model="mskov/roberta-base-toxicity")
|
7 |
classifier = pipeline(model="mskov/roberta-base-toxicity")
|
8 |
|
9 |
+
audio = "./test/candy-bar-chewing.wav"
|
10 |
+
classifier(audio, candidate_labels=["Sound of a dog", "Sound of vaccum cleaner", "chewing", "sneezing"])
|
11 |
|
12 |
predicted_label = result[0]["label"]
|
13 |
print(f"Predicted label: {predicted_label}")
|