SudhanshuBlaze commited on
Commit
67ffb9b
1 Parent(s): d143dc0

add references in readme

Browse files
Files changed (1) hide show
  1. README.md +8 -2
README.md CHANGED
@@ -16,8 +16,6 @@ Neural style transfer is an optimization technique used to take two images—a c
16
 
17
  This is implemented by optimizing the output image to match the content statistics of the content image and the style statistics of the style reference image. These statistics are extracted from the images using a convolutional network.
18
 
19
- ## Example
20
-
21
  ## Goal
22
 
23
  In this project we are buidling **streamlit** demo for Fast arbitrary image style transfer using a **pretrained** Image Stylization model from **TensorFlow Hub**. To use it, simply upload a content image and style image.
@@ -68,3 +66,11 @@ streamlit run app.py
68
  ```
69
 
70
  #### Now go to http://localhost:8501/ to test out this streamlit web-app
 
 
 
 
 
 
 
 
 
16
 
17
  This is implemented by optimizing the output image to match the content statistics of the content image and the style statistics of the style reference image. These statistics are extracted from the images using a convolutional network.
18
 
 
 
19
  ## Goal
20
 
21
  In this project we are buidling **streamlit** demo for Fast arbitrary image style transfer using a **pretrained** Image Stylization model from **TensorFlow Hub**. To use it, simply upload a content image and style image.
 
66
  ```
67
 
68
  #### Now go to http://localhost:8501/ to test out this streamlit web-app
69
+
70
+ ### References:
71
+
72
+ <a href='https://arxiv.org/abs/1705.06830' target='_blank'>1. Exploring the structure of a real-time, arbitrary neural artistic stylization network</a>
73
+
74
+ <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>
75
+
76
+ <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>