Spaces:
No application file
No application file
initial commint
Browse files- interior design +14 -0
interior design
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import os
|
| 3 |
+
|
| 4 |
+
def function(reference,real_picture,positive_propmt,negtive_propmt,slider):
|
| 5 |
+
return none
|
| 6 |
+
|
| 7 |
+
demo = gr.Interface(
|
| 8 |
+
function,
|
| 9 |
+
inputs = [gr.Image(type="pil"), gr.Image(type="pil"),"text","text",gr.Slider(0,1)],
|
| 10 |
+
outputs="image"
|
| 11 |
+
)
|
| 12 |
+
|
| 13 |
+
if __name__ == "__main__":
|
| 14 |
+
demo.launch()
|