Not able to convert tensorflow model into TVM

Hi, I am new to TVM and I am trying to convert the below tensorflow model to TVM. During the conversion I get the following error: "The following operators are not implemented: {‘VariableV2’, ‘ApplyAdam’, ‘NoOp’, ‘AddN’, ‘RandomUniform’, ‘Assign’, ‘Reciprocal’, ‘ReluGrad’, ‘BroadcastGradientArgs’, ‘Log1p’, ‘BiasAddGrad’} " I am using tensorflow 1.13.1. Is there any way of converting the model?

These OP have not been implemented yet. You can refer to other people’s PR to implement these OP

Some Ops for training might not be necessary during inference, you may first use tensorflow/python/tools/freeze_graph.py to eliminates them, then working on unsupported ops.