Sa-m commited on
Commit
363f940
·
1 Parent(s): 80798b6

Update app.py

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