Spaces:
Runtime error
Runtime error
Create index.html
Browse files- index.html +10 -0
index.html
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
git clone https://huggingface.co/spaces/efasf/background-remover
|
| 2 |
+
hf download efasf/background-remover --repo-type=space
|
| 3 |
+
import gradio as gr
|
| 4 |
+
|
| 5 |
+
def greet(name):
|
| 6 |
+
return "Hello " + name + "!!"
|
| 7 |
+
|
| 8 |
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 9 |
+
demo.launch()
|
| 10 |
+
git add app.py && git commit -m 'Add application file' && git push
|