With a fully frozen graph, the model is 85 kB. Is there any reason this model will not run on the Jetson Nano platform? From looking at the support matrix:
there is no mention of the TimeDistributed layer, which would indicate that it won’t compile for TensorRT. Does the Jetson platform fully support the Tensorflow framework or are there limitations?
Not all the TensorFlow layers are supported.
You can find the support matrix below:
Do you meet any error when converting it into TensorRT? TimeDistributed layer is a composition of some basic operations.
Please check if all the basic operations are supported instead.
Thank you for the response. Let me clarify my question, does the Jetson Nano, not TensorRT, support all Tensorflow layers? Would I be able to run my model on the Jetson Nano as is or would it require me to compile to a new format? I haven’t been able to find any equivalent support matrix for Tensorflow, like there is for TensorRT. I’m trying to understand what the Jetson Nano supports from the Tensorflow framework as is.