Spaces:
Build error
Build error
Update app.py
Browse files
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="
|
| 32 |
-
description="""
|
| 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()
|