NumPyANN icon indicating copy to clipboard operation
NumPyANN copied to clipboard

Missing bracket in the tutorial file "extract_features"

Open SharlotteManganye opened this issue 2 years ago • 1 comments

Hi

I am running NumpyANN tutorial using Jupyter nb. The extract_features.py file was not executing.

The error is here: fruit_data = skimage.io.imread(fname=os.path.sep.join([os.getcwd(), curr_dir, img_file], as_grey=False) There is a typo, you missed ")" , I used the following and it worked fruit_data = skimage.io.imread(fname=os.path.sep.join([os.getcwd(), curr_dir, img_file]), as_grey=False)

SharlotteManganye avatar Aug 20 '21 14:08 SharlotteManganye