Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ from visualization import update_visibility_and_charts
|
|
4 |
|
5 |
def create_interface():
|
6 |
with gr.Blocks() as iface:
|
7 |
-
gr.Markdown("#
|
8 |
gr.Markdown("Upload a Video, TXT, or PDF file.")
|
9 |
|
10 |
with gr.Row():
|
@@ -16,7 +16,7 @@ def create_interface():
|
|
16 |
execution_time = gr.Textbox(label="Execution Time", visible=False)
|
17 |
detected_language = gr.Textbox(label="Detected Language", visible=False)
|
18 |
|
19 |
-
# Create placeholders for charts
|
20 |
charts_and_explanations = []
|
21 |
for _ in range(6): # 3 analysis types * 2 speakers
|
22 |
with gr.Row():
|
|
|
4 |
|
5 |
def create_interface():
|
6 |
with gr.Blocks() as iface:
|
7 |
+
gr.Markdown("# Personality Analysis Classification")
|
8 |
gr.Markdown("Upload a Video, TXT, or PDF file.")
|
9 |
|
10 |
with gr.Row():
|
|
|
16 |
execution_time = gr.Textbox(label="Execution Time", visible=False)
|
17 |
detected_language = gr.Textbox(label="Detected Language", visible=False)
|
18 |
|
19 |
+
# Create placeholders for charts and explanations
|
20 |
charts_and_explanations = []
|
21 |
for _ in range(6): # 3 analysis types * 2 speakers
|
22 |
with gr.Row():
|