pytorch2keras
pytorch2keras copied to clipboard
Converted keras model has different parameters
The original PyTorch model has no bias (only weights) in certain Convo layers but the converted Keras model does have bias respectively. And the Keras model shows no BatchNorm2D layers compared to the PyTorch model. I am thinking that the code has conducted BN folding. Is there a way to switch off this function so it will be easier to match the weights?
Have the same problem. Any updates?