Hi, where can i find the information of what functions are supported by TensorRT.
Because my model uses leaky relu and there is no warning while convert pb model to uff file but the prediction of converted model is not good and that makes me wonder maybe TensorRT doesn’t have leaky relu ?
my environment is TensorRT 5.0.6.3 on Jetson Nano.
i also want to ask when i use uff.from_tensorflow_frozen_model to convert pb to uff, does it always gives you a warning if there is a function that TensorRT does not support ?
i have convert a model that has abs function but there is no warning while convert it to uff, until i run the model in the program and it shows there is no net/Abs.
According to the link, LeakyReLU is supported in TensorRT parser that means it can be converted from pb to uff correctly and i don’t need to write a custom plugin for it ?