Aravind Sundaresan commited on
Commit
92b7091
1 Parent(s): fa100f9

Added project description

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -23,5 +23,6 @@ style_image_input = gr.inputs.Image(shape=(256, 256), label="Style Image")
23
  app_interface = gr.Interface(fn=perform_style_transfer,
24
  inputs=[content_image_input, style_image_input],
25
  outputs="image",
26
- title="Fast Neural Style Transfer")
 
27
  app_interface.launch()
 
23
  app_interface = gr.Interface(fn=perform_style_transfer,
24
  inputs=[content_image_input, style_image_input],
25
  outputs="image",
26
+ title="Fast Neural Style Transfer",
27
+ description="Gradio demo for Fast Neural Style Transfer using a pretrained Image Stylization model from TensorFlow Hub. To use it, simply upload a content image and style image, or click one of the examples to load them. To learn more about the project, please find the references listed below.")
28
  app_interface.launch()