#pip install imageai #pip install Tensorflow #pip install keras from imageai.Prediction import ImagePrediction import os from keras.models import load_model Givenimage= "picc.jpg" execution_path=os.getcwd() #print(execution_path) prediction = ImagePrediction() prediction.setModelTypeAsSqueezeNet() prediction.setModelPath(os.path.join(execution_path, "squeezenet_weights_tf_dim_ordering_tf_kernels.h5" )) prediction.loadModel() predictions, probabilities = prediction.predictImage(os.path.join(execution_path, Givenimage), result_count= 3 ) for eachPrediction, eachProbability in zip (predictions, probabilities): print (eachPrediction , " : " , eachProbability) Result: WARNING:tensorflow:11 out of the last 11 calls to <function Model.make_predict_function.<locals>.predict_function at 0x7f941e211598> tr...
Here we try to find out solutions of every why and how with the help of science.