Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MasumBhuiyan
/
Linear-regression
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
MasumBhuiyan
commited on
Oct 7, 2023
Commit
51c6fbe
·
1 Parent(s):
1efc3a8
Upload app.py
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 infer(name):
4
+
return "Hello " + name + "!"
5
+
6
+
7
+
endpoint = gr.Interface(fn=infer, inputs="text", outputs="text")
8
+
9
+
endpoint.launch()