Spaces:
Runtime error
Runtime error
nabeelraza
commited on
Commit
•
5b65c7c
1
Parent(s):
c184fc2
Add: added app.py and model.pkl
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dc442ca0d1a429562fd71b9316c079e115a86f23a6c8ac7e074642bb1ffe2d3b
|
3 |
+
size 47051563
|