alexnet.rst 934 Bytes
Newer Older
1
2
3
4
5
AlexNet
=======

.. currentmodule:: torchvision.models

6
The AlexNet model was originally introduced in the
Nicolas Hug's avatar
Nicolas Hug committed
7
`ImageNet Classification with Deep Convolutional Neural Networks
8
9
10
11
<https://papers.nips.cc/paper/2012/hash/c399862d3b9d6b76c8436e924a68c45b-Abstract.html>`__
paper. The implemented architecture is slightly different from the original one,
and is based on `One weird trick for parallelizing convolutional neural networks
<https://arxiv.org/abs/1404.5997>`__.
12
13
14
15
16


Model builders
--------------

17
The following model builders can be used to instantiate an AlexNet model, with or
18
19
20
21
22
23
24
25
26
27
28
without pre-trained weights. All the model builders internally rely on the
``torchvision.models.alexnet.AlexNet`` base class. Please refer to the `source
code
<https://github.com/pytorch/vision/blob/main/torchvision/models/alexnet.py>`_ for
more details about this class.

.. autosummary::
    :toctree: generated/
    :template: function.rst

    alexnet