alexnet.rst 934 B

12345678910111213141516171819202122232425262728
  1. AlexNet
  2. =======
  3. .. currentmodule:: torchvision.models
  4. The AlexNet model was originally introduced in the
  5. `ImageNet Classification with Deep Convolutional Neural Networks
  6. <https://papers.nips.cc/paper/2012/hash/c399862d3b9d6b76c8436e924a68c45b-Abstract.html>`__
  7. paper. The implemented architecture is slightly different from the original one,
  8. and is based on `One weird trick for parallelizing convolutional neural networks
  9. <https://arxiv.org/abs/1404.5997>`__.
  10. Model builders
  11. --------------
  12. The following model builders can be used to instantiate an AlexNet model, with or
  13. without pre-trained weights. All the model builders internally rely on the
  14. ``torchvision.models.alexnet.AlexNet`` base class. Please refer to the `source
  15. code
  16. <https://github.com/pytorch/vision/blob/main/torchvision/models/alexnet.py>`_ for
  17. more details about this class.
  18. .. autosummary::
  19. :toctree: generated/
  20. :template: function.rst
  21. alexnet