Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
MasumBhuiyan
/
linear-regression
like
0
Tabular Regression
Keras
TF-Keras
scikit-learn/auto-mpg
English
AlbertConfig
License:
mit
Model card
Files
Files and versions
Community
1
Use this model
MasumBhuiyan
commited on
Oct 7, 2023
Commit
30e76e0
•
1 Parent(s):
84416a7
[ML Lab] Add demo inference endpoint
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()