Implementation of Neural Style Transfer inspired from code available at official tensorflow website.
Implemented single style transfer.
Check details here
- python3
- tensorflow
- numpy
The program runs for 5 epochs and each epoch has 100 steps. The program saves images after each epoch in images folder under the name transferred_<epoch_no>.jpg.
To perform style transfer run: python transfer.py <path-to-content-image> <path-to-style-image>
The number of epochs can be modified in the file at line 150.


