Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fffiloni
/
ProPainter
like
78
Paused
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
fffiloni
commited on
Oct 31, 2023
Commit
a79cc2a
·
1 Parent(s):
3b79b75
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
def infer(text):
4
+
return text
5
+
6
+
gr.Interface(fn=infer,inputs=[gr.Textbox()], outputs=[gr.Textbox()]).launch()