prlz77 / ResNeXt.pytorch

Reproduces ResNet-V3 with pytorch
MIT License
505 stars 121 forks source link

Can I directly convert TensorFlow's ResNext weight to pytorch's weight and use it directly? #20

Closed ma3252788 closed 4 years ago

ma3252788 commented 4 years ago

Can I directly convert TensorFlow's ResNext weight to pytorch's weight and use it directly?

Or, do you have a pre-trained model on a large data set?

prlz77 commented 4 years ago

Not directly, you will have to find the corresponding Pytorch weight matrix to fill with each weight matrix from TF. However, it is not impossible. If you do it, I'd be happy to incorporate it here through a pull request.

ma3252788 commented 4 years ago

Not directly, you will have to find the corresponding Pytorch weight matrix to fill with each weight matrix from TF. However, it is not impossible. If you do it, I'd be happy to incorporate it here through a pull request.

OK, I will try~Thank you !