nohing
nohing
## Overview [TIP]: # ( DO NOT include screenshots of your actual database! ) [NOTE]: # ( Give a BRIEF summary about your problem ) Hello! Attachments do not work...
Hello there, I use PyCharm on Linux Mint 20.3. When I run this script: `from imageai.Prediction import ImagePrediction import os execution_path = os.getcwd() prediction = ImagePrediction() prediction.setModelTypeAsMobileNetV2() prediction.setModelPath(os.path.join(execution_path, "mobilenet_v2.h5")) prediction.loadModel()...
Hello, when I run this `code: `execution_path = os.getcwd() prediction = ImagePrediction() prediction.setModelTypeAsMobileNetV2() prediction.setModelPath(os.path.join(execution_path, "mobilenet_v2.h5")) prediction.loadModel() predictions, probabilities = prediction.classifyImage(os.path.join(execution_path, "giraffe.jpg"), result_count=5) for eachPrediction, eachProbability in zip(predictions, probabilities): print(eachPrediction, "...