You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am interested in running the image classification model to benchmark our accelerator and, currently, my environment is in pytorch therefore, I had a look at your experimental model under:
/tiny/benchmark/experimental/training_torch/image_classification/utils/model.py
The model contains ResNetBlock with two Conv2d convolutions followed per Batch Normalization. However, each Conv2d layer is configured with the bias enabled (bias=True) which is inconsistent with the Con2d layers in the Keras model that don't have the use_bias flag enabled (also it is not coherent with the purpose of batch normalization layer that follows).
Thank you,
Best regards,
Jean-Baptiste
The text was updated successfully, but these errors were encountered:
Just to be clear for someone stumbling on this issue, as stated in the README, the PyTorch training code is not official and cannot be used for closed submissions. Even the original training code is only for documentation purposes. The only official source for closed submissions is the trained model itself.
Having said that, it is important to make this code map as closely as possible. Thanks again for reporting it! It would be great if you could make a PR to fix the issue.
Hello,
I am interested in running the image classification model to benchmark our accelerator and, currently, my environment is in pytorch therefore, I had a look at your experimental model under:
/tiny/benchmark/experimental/training_torch/image_classification/utils/model.py
The model contains ResNetBlock with two Conv2d convolutions followed per Batch Normalization. However, each Conv2d layer is configured with the bias enabled (bias=True) which is inconsistent with the Con2d layers in the Keras model that don't have the use_bias flag enabled (also it is not coherent with the purpose of batch normalization layer that follows).
Thank you,
Best regards,
Jean-Baptiste
The text was updated successfully, but these errors were encountered: