Shangkhonil commited on
Commit
de45d18
·
verified ·
1 Parent(s): bf34dfc

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -0
app.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 a function to classify an audio file
8
+ def classify_audio(audio):
9
+ # The input audio is passed to the model for classification
10
+ result = pipe(audio)
11
+ return {label['label']: label['score'] for label in result}
12
+
13
+ # Set up the Gradio interface
14
+ app = gr.Interface(
15
+ fn=classify_audio, # Function to classify audio
16
+ inputs=gr.Audio(source="upload", type="filepath"), # Input field for uploading an audio file
17
+ outputs=gr.Label(num_top_classes=3), # Output with top 3 classification results
18
+ title="Audio Classification", # App title
19
+ description="Upload an audio file to classify it using MIT's fine-tuned AudioSet model."
20
+ )
21
+
22
+ # Launch the app
23
+ if __name__ == "__main__":
24
+ app.launch()