We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from jetbot import ObjectDetector model = ObjectDetector('ssd_mobilenet_v2_coco.engine')
The above code still brought me the following ERROR messages:
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-1-78c468b59bd4> in <module> 1 from jetbot import ObjectDetector 2 ----> 3 model = ObjectDetector('ssd_mobilenet_v2_coco.engine') ~/.local/lib/python3.6/site-packages/jetbot/object_detection.py in __init__(self, engine_path, preprocess_fn) 27 load_plugins() 28 self.trt_model = TRTModel(engine_path, input_names=[TRT_INPUT_NAME], ---> 29 output_names=[TRT_OUTPUT_NAME, TRT_OUTPUT_NAME + '_1']) 30 self.preprocess_fn = preprocess_fn 31 ~/.local/lib/python3.6/site-packages/jetbot/tensorrt_model.py in __init__(self, engine_path, input_names, output_names, final_shapes) 57 with open(engine_path, 'rb') as f: 58 self.engine = self.runtime.deserialize_cuda_engine(f.read()) ---> 59 self.context = self.engine.create_execution_context() 60 61 if input_names is None: AttributeError: 'NoneType' object has no attribute 'create_execution_context'
Can anybody let me know how to successfully load ssd_mobilenet_v2_coco.engine ?? BTW, I'm already using v0.4 (latest)
The text was updated successfully, but these errors were encountered:
Did you got any solution for this
Sorry, something went wrong.
The problem is that jetpack 4.5 doesn't support that file.
Can someone provide the file with jetpack 4.5 support?
ssd_mobilenet_v2_coco.engine
The problem is that jetpack 4.5 doesn't support that file. Can someone provide the file with jetpack 4.5 support? ssd_mobilenet_v2_coco.engine
Were you able to find the compatible file or work something else out?
No branches or pull requests
The above code still brought me the following ERROR messages:
Can anybody let me know how to successfully load ssd_mobilenet_v2_coco.engine ?? BTW, I'm already using v0.4 (latest)
The text was updated successfully, but these errors were encountered: