Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
# Initialize the audio classification pipeline with the MIT model
|
5 |
+
pipe = pipeline("audio-classification", model="MIT/ast-finetuned-audioset-10-10-0.4593")
|
6 |
+
|
7 |
+
# Define the function to classify an audio file
|
8 |
+
def classify_audio(audio):
|
9 |
+
result = pipe(audio)
|
10 |
+
return {label['label']: label['score'] for label in result}
|
11 |
+
|
12 |
+
# Set up the Gradio interface
|
13 |
+
app = gr.Interface(
|
14 |
+
fn=classify_audio, # Function to classify audio
|
15 |
+
inputs=gr.Audio(type="filepath"), # Input for uploading an audio file
|
16 |
+
outputs=gr.Label(num_top_classes=3), # Output with top 3 classification results
|
17 |
+
title="Audio Classification", # App title
|
18 |
+
description="Upload an audio file to classify it using MIT's fine-tuned AudioSet model."
|
19 |
+
)
|
20 |
+
|
21 |
+
# Launch the app
|
22 |
+
if __name__ == "__main__":
|
23 |
+
app.launch()
|