efasf commited on
Commit
1377032
·
verified ·
1 Parent(s): 4058f42

Create index.html

Browse files
Files changed (1) hide show
  1. 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