I noticed that TF 1.15 uses FusedBatchNormV3
instead of FusedBatchNorm
in models such as Resnet. E.g. Resnet50 uses 49 FusedBatchNormV3
Looks like Relay TF frontend does not support FusedBatchNormV3
yet.
It means that if Resnet model frozen .pb file is created using TF 1.15 it can not be compiled with TVM.
jonso
2
@apivovarov, would you be able to contribute this op?
masahi
4
@jonso Do you think things like this (which seems esoteric to me) is better suited for a custom conversion map, something similar to the one I added for torch? https://github.com/apache/incubator-tvm/pull/4961