JonnoMason
commited on
Commit
•
7552008
1
Parent(s):
6982259
Update app.py
Browse files
app.py
CHANGED
@@ -1,27 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
-
import pandas as pd
|
3 |
-
import io
|
4 |
|
5 |
-
|
6 |
-
model = gr.load("models/luigisaetta/whisper-atcosim3")
|
7 |
|
8 |
-
# Function to process the model output and convert to CSV
|
9 |
-
def process_output(audio):
|
10 |
-
# Get the transcription from the model
|
11 |
-
transcription = model(audio)
|
12 |
-
|
13 |
-
# Assuming the transcription includes timestamps in some way
|
14 |
-
# If not, you would need to generate timestamps (this depends on your model's output format)
|
15 |
-
# Here, we assume the transcription is a list of dictionaries with 'start', 'end', and 'text'
|
16 |
-
|
17 |
-
# Convert the transcription to a DataFrame
|
18 |
-
df = pd.DataFrame(transcription)
|
19 |
-
|
20 |
-
# Create a CSV file in memory
|
21 |
-
csv_buffer = io.StringIO()
|
22 |
-
df.to_csv(csv_buffer, index=False)
|
23 |
-
csv_buffer.seek(0)
|
24 |
-
|
25 |
-
return csv_buffer.getvalue()
|
26 |
|
27 |
|
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
+
gr.load("models/luigisaetta/whisper-atcosim3").launch()
|
|
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
|