Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,21 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
gr.load("models/gsar78/Greek_Sentiment")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
iface = gr.Interface.load("models/gsar78/Greek_Sentiment")
|
4 |
+
|
5 |
+
iface.launch(
|
6 |
+
title="Hellenic Sentiment AI",
|
7 |
+
description=None,
|
8 |
+
article=None,
|
9 |
+
theme="default",
|
10 |
+
flagging_dir=None,
|
11 |
+
share=True,
|
12 |
+
favicon_path=None,
|
13 |
+
css=None,
|
14 |
+
analytics_script=None,
|
15 |
+
allow_flagging="never",
|
16 |
+
allow_screenshot=True,
|
17 |
+
enable_queue=True,
|
18 |
+
show_input=True,
|
19 |
+
show_output=True,
|
20 |
+
footer="Development by Geo Sar"
|
21 |
+
)
|