Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
srivarshan
/
argumentation-quality-analyzer
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
srivarshan
commited on
Dec 15, 2022
Commit
3c7ad8d
·
1 Parent(s):
bac8bd7
Add Gradio Interface calling script
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
def analyze(name):
4
+
return "Hello, World!"
5
+
6
+
app = gr.Interface(fn=analyze, inputs="text", outputs="text")
7
+
8
+
# app.launch(share="True")
9
+
app.launch()