python predict.py /path/to/image checkpoint what is the path to image here. i need to give an image as an input, the image is in a folder 1 which is in folder test, which is in the folder flowers. so i have written it as /flowers/test/1/image.jpg, but i am getting it as "no file or directory"
i have tried writing the statements in the image, as i said thats not working. i am doing a udacity nanodegree project AI programming with python.


/is an absolute path. You need to writeflowers/test/1/image.jpgwithout the leading slash.