You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I transfer int8 model successfully, but get error when inference.
Error as flow:
self.model_trt.load_state_dict(torch.load(model_path))
File "/usr/local/lib64/python3.6/site-packages/torch/nn/modules/module.py", line 832, in load_state_dict
load(self)
File "/usr/local/lib64/python3.6/site-packages/torch/nn/modules/module.py", line 827, in load
state_dict, prefix, local_metadata, True, missing_keys, unexpected_keys, error_msgs)
File "/usr/local/lib64/python3.6/site-packages/torch2trt-0.1.0-py3.6-linux-x86_64.egg/torch2trt/torch2trt.py", line 443, in _load_from_state_dict
self.context = self.engine.create_execution_context()
AttributeError: 'NoneType' object has no attribute 'create_execution_context'
Load model code:
self.model_trt = TRTModule()
self.model_trt.load_state_dict(torch.load(model_path))
I transfer int8 model successfully, but get error when inference.
Error as flow:
self.model_trt.load_state_dict(torch.load(model_path))
File "/usr/local/lib64/python3.6/site-packages/torch/nn/modules/module.py", line 832, in load_state_dict
load(self)
File "/usr/local/lib64/python3.6/site-packages/torch/nn/modules/module.py", line 827, in load
state_dict, prefix, local_metadata, True, missing_keys, unexpected_keys, error_msgs)
File "/usr/local/lib64/python3.6/site-packages/torch2trt-0.1.0-py3.6-linux-x86_64.egg/torch2trt/torch2trt.py", line 443, in _load_from_state_dict
self.context = self.engine.create_execution_context()
AttributeError: 'NoneType' object has no attribute 'create_execution_context'
Load model code:
self.model_trt = TRTModule()
self.model_trt.load_state_dict(torch.load(model_path))
Transfer code:
self.model_trt = torch2trt(self.model, [data_set[0]], int8_mode=True, max_batch_size=100, int8_calib_dataset=data_set)
torch.save(self.model_trt.state_dict(), '10_trt_int8_1000.pth')
The text was updated successfully, but these errors were encountered: