Postingan lainnya
Error tensorflow python
from imageai.Detection import ObjectDetection import os
execution_path = os.getcwd()
detector = ObjectDetection() detector.setModelTypeAsRetinaNet() detector.setModelPath( os.path.join(execution_path , "resnet50_coco_best_v2.0.1.h5")) detector.loadModel() detections = detector.detectObjectsFromImage(input_image=os.path.join(execution_path , "image.jpg"), output_image_path=os.path.join(execution_path , "imagenew.jpg"))
for eachObject in detections: print(eachObject["name"] , " : " , eachObject["percentage_probability"] )
ada yang paham cara mengatasi ini?
IPython 7.13.0 -- An enhanced Interactive Python. Using TensorFlow backend. File "C:\Users\User\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 114 def TFE_ContextOptionsSetAsync(arg1, async): ^ SyntaxError: invalid syntax
1 Jawaban:
<p>itu ada kesalahan indentasi, coba buka saja file tersebut, diperbaiki<br></p>