VISION23 commited on
Commit
c9e3ae2
·
1 Parent(s): 08466d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -28,12 +28,8 @@ glacier = ["examples/glacier_national_park.jpeg", "examples/the_scream.jpg"]
28
  app_interface = gr.Interface(fn=perform_style_transfer,
29
  inputs=[content_image_input, style_image_input],
30
  outputs="image",
31
- title="Fast Neural Style Transfer",
32
- 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.<br>
33
- This Gradio Demo was build by <a href="https://huggingface.co/gstaff" target="_blank">Grant Stafford @gstaff</a>.""",
34
  examples=[glacier, golden_gate, joshua_tree],
35
- article="**References**\n\n"
36
- "<a href='https://www.tensorflow.org/hub/tutorials/tf2_arbitrary_image_stylization' target='_blank'>1. Tutorial to implement Fast Neural Style Transfer using the pretrained model from TensorFlow Hub</a> \n"
37
- "<a href='https://huggingface.co/spaces/luca-martial/neural-style-transfer' target='_blank'>2. The idea to build a neural style transfer application was inspired from this Hugging Face Space </a>",
38
  theme='gstaff/whiteboard')
39
  app_interface.launch()
 
28
  app_interface = gr.Interface(fn=perform_style_transfer,
29
  inputs=[content_image_input, style_image_input],
30
  outputs="image",
31
+ title="Image Style Transfer",
32
+ description="""Neural Style Transfer. Simply upload a content image and style image, or click one of the examples to load them.""",
 
33
  examples=[glacier, golden_gate, joshua_tree],
 
 
 
34
  theme='gstaff/whiteboard')
35
  app_interface.launch()