Update app.py
Browse files
app.py
CHANGED
|
@@ -87,7 +87,7 @@ def gradio_intrface(mymodel):
|
|
| 87 |
image1 = gr.inputs.Image() #CONTENT IMAGE
|
| 88 |
image2 = gr.inputs.Image() #STYLE IMAGE
|
| 89 |
stylizedimg=gr.outputs.Image()
|
| 90 |
-
gr.Interface(fn=mymodel, inputs= [image1,image2] , outputs= stylizedimg,title='Style Transfer').launch()
|
| 91 |
|
| 92 |
"""The function will be launched both Inline and Outline where u need to add a content and style image."""
|
| 93 |
|
|
|
|
| 87 |
image1 = gr.inputs.Image() #CONTENT IMAGE
|
| 88 |
image2 = gr.inputs.Image() #STYLE IMAGE
|
| 89 |
stylizedimg=gr.outputs.Image()
|
| 90 |
+
gr.Interface(fn=mymodel, inputs= [image1,image2] , outputs= stylizedimg,title='Style Transfer',theme='grass').launch()
|
| 91 |
|
| 92 |
"""The function will be launched both Inline and Outline where u need to add a content and style image."""
|
| 93 |
|