Hi everyone.
I use GPU and TLT version2.
I have a tlt trained model. I want to convert it to TensorRT but not with tlt-export or tlt-convert because I need a model with trt postfix (.trt), not the .etlt or .engine postfix.
To this end What can I do?
Which steps I should take?
You can still use tlt-export to generate etlt model. Then use tlt-converter to generate trt engine.
The trt postfix is the same as .engine postfix. They are all trt engine.
thanks @Morgan I found that I should create my trt model by tlt-converter which -e parameters can be a model name with .trt postfix instead of a .engine. Then I can use that trt model in my python scripts