I was trying to follow the instructions for the following TensorFlow demo, where style of an art is transfered to another image:
I successfully installed TensorFlow and the other things. But when i tried to run
'python evaluate.py --checkpoint ./rain-princess.ckpt --in-path <path_to_input_file> --out-path ./output_image.jpg',
my access was denied.
Can anyone shed light as to why this occurs? I am still quite new to this.
Make sure the image which you are passing as input is in fast-style-transfer folder.
python evaluate.py --checkpoint ./rain-princess.ckpt --in-path <path_to_input_file> --out-path ./output_image.jpg
As for the above code in place of
path_to_input_file
just insert your image nameFor example if the image name is saved as jac (jpg format) in fast-style-transfer folder, then code would look like
python evaluate.py --checkpoint ./rain-princess.ckpt --in-path jac.jpg --out-path ./output_image.jpg