Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.07 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.07 KB

Neural Style Transfer Learning In Tensorflow

nst
The image showed is not actual outcome. It was personal project thus actual image can't be showed here.

The Art Of Deep Learning

The Image size can be easily kept as it was by using opencv python library.

open notebook, before training the model resize you image as you want. Add a cell in notebook and resize image using following code:

import cv2
import os

height = None       #change as you need
width = None        #change as you need
url = ('style image url')

image = cv2.resize(url, height = height, width = width)

## Now use it..

Environment

Make sure you have all necessery python library installed. For this projects you need

  • Numpy
  • TensorFlow
  • Keras

if you don't have these libraries go to python or anaconda prompt and paste these:

pip install numpy
pip install tensorflow
pip install keras

Get touch with Me

Connect- Linkedin
Website- RakibHHridoy