(self)
| 415 | |
| 416 | class T5EncoderConverter(ModelFileConverter): |
| 417 | def __init__(self): |
| 418 | super().__init__(T5EncoderTorchFile, T5EncoderONNXFile, T5EncoderTRTEngine) |
| 419 | |
| 420 | def onnx_to_trt( |
| 421 | self, output_fpath: str, input_fpath: str, network_metadata: NetworkMetadata, profiles: List[Profile], preview_features: List[PreviewFeature] |