Sa-m commited on
Commit
46269f7
1 Parent(s): e7b46f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -71,7 +71,7 @@ def gradio_intrface(mymodel):
71
  image1 = gr.inputs.Image(label="Content Image") #CONTENT IMAGE
72
  image2 = gr.inputs.Image(label="Style Image") #STYLE IMAGE
73
  stylizedimg=gr.outputs.Image(label="Result")
74
- gr.Interface(fn=mymodel, inputs= [image1,image2] , outputs= stylizedimg,title='Style Transfer',theme='seafoam',examples=[['Content_Images/contnt12.jpg','VG516.jpg']],article="References-\n\n""<a href='https://www.tensorflow.org/hub/tutorials/tf2_arbitrary_image_stylization'>\n").launch()
75
 
76
  """The function will be launched both Inline and Outline where u need to add a content and style image."""
77
 
 
71
  image1 = gr.inputs.Image(label="Content Image") #CONTENT IMAGE
72
  image2 = gr.inputs.Image(label="Style Image") #STYLE IMAGE
73
  stylizedimg=gr.outputs.Image(label="Result")
74
+ gr.Interface(fn=mymodel, inputs= [image1,image2] , outputs= stylizedimg,title='Style Transfer',theme='seafoam',examples=[['Content_Images/contnt12.jpg','VG516.jpg']],article="References-\n\nExploring the structure of a real-time, arbitrary neural artistic stylization network. Golnaz Ghiasi, Honglak Lee, Manjunath Kudlur, Vincent Dumoulin.").launch()
75
 
76
  """The function will be launched both Inline and Outline where u need to add a content and style image."""
77