Spaces:
Runtime error
Runtime error
Commit
·
e29a274
1
Parent(s):
42e3feb
fix order of references
Browse files
app.py
CHANGED
@@ -70,8 +70,8 @@ if style_image and content_image is not None:
|
|
70 |
# scroll down to see the references
|
71 |
st.markdown("**References**")
|
72 |
|
73 |
-
st.markdown("<a href='https://arxiv.org/abs/1705.06830' target='_blank'>Exploring the structure of a real-time, arbitrary neural artistic stylization network</a>", unsafe_allow_html=True)
|
74 |
|
75 |
-
st.markdown("<a href='https://www.tensorflow.org/hub/tutorials/tf2_arbitrary_image_stylization' target='_blank'>
|
76 |
|
77 |
-
st.markdown("<a href='https://huggingface.co/spaces/luca-martial/neural-style-transfer' target='_blank'>
|
|
|
70 |
# scroll down to see the references
|
71 |
st.markdown("**References**")
|
72 |
|
73 |
+
st.markdown("<a href='https://arxiv.org/abs/1705.06830' target='_blank'>1. Exploring the structure of a real-time, arbitrary neural artistic stylization network</a>", unsafe_allow_html=True)
|
74 |
|
75 |
+
st.markdown("<a href='https://www.tensorflow.org/hub/tutorials/tf2_arbitrary_image_stylization' target='_blank'>2. Tutorial to implement Fast Neural Style Transfer using the pretrained model from TensorFlow Hub</a> \n", unsafe_allow_html=True)
|
76 |
|
77 |
+
st.markdown("<a href='https://huggingface.co/spaces/luca-martial/neural-style-transfer' target='_blank'>3. The idea to build a neural style transfer application was inspired from this Hugging Face Space </a>", unsafe_allow_html=True)
|