BooHwang

Results 5 comments of BooHwang

where can I get the onnx zip passwd?

because face had normalization in the script of mtcnn.py, which name "fixed_image_standardization"

> How about referring this one ?: [#1968 (comment)](https://github.com/NVIDIA/TensorRT-LLM/issues/1968#issuecomment-2252750163) I had do that before report this issue, not work for me.

> I fixed this issue by editing plugin/plugin.py and changing all the dataclass fields in PluginConfig to have init=True It work for me, but the engine need verify correctness, thx...

you can set IR version use below code ```python import onnx model = onnx.load('640m.onnx') model.ir_version = 8 onnx.save(model, '640m_v8.onnx') ```