Adding new models to the models section.
Many new models have been proposed in the recent years and do not exist in the models module.
For example, the EfficientNets appear to provide with 8 models of different complexities that outperform everything else that exists at each complexity level.
Adding the EfficientNets, MobileNet-v3, SE-ResNet and SE-ResNeXt.
This request has come often. Just linking all those for reference.
A generalized guideline for adding models is being added in contributing.md file in this pr #2663.
Hi,
To complement @oke-aditya great answer, we will be adding more models to torchvision, including Efficient Nets and MobileNetV3.
The current limitation is that we would like to ensure that we can reproduce the pretrained model using the training scripts from references/classification, but those models require a different training recipe than then one present in [references/classification`](https://github.com/pytorch/vision/tree/master/references/classification), so we will need to update those recipes before uploading those new models.
I hope to add Mish activation function.
@songyuc There is a closed feature request on PyTorch for adding Mish. You can comment over there for increased visibility so that Mish can be considered to be added in the future. Link to the issue - https://github.com/pytorch/pytorch/issues/25584
Most helpful comment
Hi,
To complement @oke-aditya great answer, we will be adding more models to torchvision, including Efficient Nets and MobileNetV3.
The current limitation is that we would like to ensure that we can reproduce the pretrained model using the training scripts from
references/classification, but those models require a different training recipe than then one present in [references/classification`](https://github.com/pytorch/vision/tree/master/references/classification), so we will need to update those recipes before uploading those new models.