Simple Neural Network In Python Not Displaying Label For The Test Image
I followed a tutorial to learn how to create a simple neural network using python. Below is the code: def image_to_feature_vector(image, size=(32,32)): return cv2.resize(image,
Solution 1:
Keras models have a predict method .
predictions = model.predict(images_as_numpy_array)
will give you predictions on any chosen data. You will to have previously opened and transformed your image as a numpy array. Just like you did for your training and testing set with the following lines:
image = cv2.imread(imagePath)
label = imagePath.split(os.path.sep)[-1].split(".")[0]
features = image_to_feature_vector(image)
Post a Comment for "Simple Neural Network In Python Not Displaying Label For The Test Image"