NeuralArt a website implementing Neural Style Transfer
Neural style transfer is an optimization technique takes two images
- A content image .
- A style reference image (such as an artwork by a famous painter) and blend them together so the output image looks like the content image, but βpaintedβ in the style of the style reference image.
- Gatys et al(A Neural Algorithm of Artistic Style) introduced a way to use Convolutional Neural Network (CNN) to separate and recombine the image content and style of natural images by extracting image representations from response layers in VGG networks.
The below shows how style transfer looks :
- Try stylizing your images with NeuralArt by some quick steps
- Intall python from here
- Install Flask web framework
$ pip install Flask
- Install TensorFlow-Hub
$ pip install "tensorflow>=1.15,<2.0"
$ pip install --upgrade tensorflow-hub
- Clone the repo using
$ git clone https://github.com/vnaazleen/NeuralArt-Website.git
- Run the server
$ python app.py
- You are ready to stylize you images now
Link to Step by Step process of NST in google colab: here
- Wikipedia NST
- A Neural Algorithm of Artistic Style (Gatys et al.)
- TensorFlow NST Tutorial
- Keras NST Tutorial
Feel free to fork & β if you like it π