Open GuiyeC opened 1 year ago
Thank you for reporting this bug! I can reproduce it on my end.
It's caused by fuse_elementwise_to_batchnorm
graph pass, where the old var has shape [1, 64, 512, 512] but the new var has shape [1, 1, 512, 512].
As a quick workaround, feel free to use pass_pipeline
API to skip that pass as shown here.
I'm trying to convert a model that contains a
LogBinomial
module and I'm getting a mismatch on some tensor shapes when converting, I was hoping you would have more insight in solving this issue. Thank you.Stack Trace
To Reproduce
System environment (please complete the following information):
Additional context
LogBinomial
module is taken directly from the ZoeDepth codebase.