Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

alexnet.rst 934 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  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
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...