ImageAI icon indicating copy to clipboard operation
ImageAI copied to clipboard

imageai.Detection.Custom on COLAB failure

Open marbortoli opened this issue 2 years ago • 2 comments

I'm trying my own dataset on the custom object detection tutorial in google COLAB and I get the error below. Someone else?

/usr/local/lib/python3.7/dist-packages/tensorflow/python/data/ops/dataset_ops.py:4212: UserWarning: Even though the tf.config.experimental_run_functions_eagerly option is set, this option does not apply to tf.data functions. To force eager execution of tf.data functions, please use tf.data.experimental.enable_debug_mode(). "Even though the tf.config.experimental_run_functions_eagerly "

script: from imageai.Detection.Custom import CustomObjectDetection

detector = CustomObjectDetection() detector.setModelTypeAsYOLOv3() detector.setModelPath('scada_one/models/detection_model-ex-034--loss-0017.824.h5') detector.setJsonPath('scada_one/json/detection_config.json') detector.loadModel() detections, extracted_objects_array = detector.detectObjectsFromImage(input_image='LA011.jpeg', output_image_path='obj_detected.jpg', extract_detected_objects=True)

for detection, object_path in zip(detections, extracted_objects_array): print(object_path) print(detection['percentage_probability'], " : ", detection['box_points']) print('-----')

marbortoli avatar Sep 22 '21 09:09 marbortoli

I'm getting the same message, though the code seems to be running fine. Have you resolved it yet?

mathvansoest avatar Mar 30 '22 13:03 mathvansoest

imageai in colab dosent work .....

IntelligenzaArtificiale avatar Oct 31 '22 09:10 IntelligenzaArtificiale