Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ from transformers import pipeline
|
|
4 |
|
5 |
|
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"])
|
|
|
4 |
|
5 |
|
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"])
|