features = tf.layers.batch_normalization(features,
momentum=params.batchnorm_momentum,
training=is_training,
name=“conv0_bn”)
…
I save the pb when predict and can restore the pb from tf and run success.
I compile the pb with tvm is successful,too.
But build error
TVMError: Check failed: checked_type_.defined(): internal error: the type checker has not populated the checked_type field for CallNode.
I did not use savedmodel mode before. I’ll try later.
I checked TVM tutorial about compile tensorflow,it’s pb with batchnorm and it’s work in TVM.My pb work in tf but fails in TVM.so is there any guide to export pb for tvm?Thanks.