Jump to content

PyTorch

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by YouArePhenomenal (talk | contribs) at 21:41, 23 July 2023 (→‎History: added ITD version history). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

PyTorch
Original author(s)
  • Adam Paszke
  • Sam Gross
  • Soumith Chintala
  • Gregory Chanan
Developer(s)Meta AI
Initial releaseSeptember 2016; 7 years ago (2016-09)[1]
Stable release
2.4.0[2] Edit this on Wikidata / 24 July 2024; 29 days ago (24 July 2024)
Repositorygithub.com/pytorch/pytorch
Written in
Operating system
PlatformIA-32, x86-64, ARM64
Available inEnglish
TypeLibrary for machine learning and deep learning
LicenseBSD-3[3]
Websitepytorch.org

PyTorch is a machine learning framework based on the Torch library,[4][5][6] used for applications such as computer vision and natural language processing,[7] originally developed by Meta AI and now part of the Linux Foundation umbrella.[8][9][10][11] It is free and open-source software released under the modified BSD license. Although the Python interface is more polished and the primary focus of development, PyTorch also has a C++ interface.[12]

A number of pieces of deep learning software are built on top of PyTorch, including Tesla Autopilot,[13] Uber's Pyro,[14] Hugging Face's Transformers,[15] PyTorch Lightning,[16][17] and Catalyst.[18][19]

PyTorch provides two high-level features:[20]

History

Meta (formerly known as Facebook) operates both PyTorch and Convolutional Architecture for Fast Feature Embedding (Caffe2), but models defined by the two frameworks were mutually incompatible. The Open Neural Network Exchange (ONNX) project was created by Meta and Microsoft in September 2017 for converting models between frameworks. Caffe2 was merged into PyTorch at the end of March 2018.[21] In September 2022, Meta announced that PyTorch would be governed by PyTorch Foundation, a newly created independent organization – a subsidiary of Linux Foundation.[22]

PyTorch 2.0 has been released on 15 March 2023.[23]

As of 2023-07-23, below are the published PyTorch versions inception to date[24]:

index PyTorch Version torchvision torchtext torchaudio PyTorch Release Date
0 2.0.0 0.15.1 0.15.1 2.0.1 2023-03-15 00:00:00
1 1.13.0 0.14.0 0.14.0 0.13.0 2022-10-28 00:00:00
2 1.12.0 0.13.0 0.13.0 0.12.0 2022-06-28 00:00:00
3 1.11.0 0.12.0 0.12.0 0.11.0 2022-02-10 00:00:00
4 1.10.1 0.11.2 0.11.1 0.10.1 2021-12-15 00:00:00
5 1.1 0.11.0 0.11.0 0.10.0 2021-10-21 00:00:00
6 1.9.1 0.10.1 0.10.1 0.9.1 2021-09-21 00:00:00
7 1.9.0 0.10.0 0.10.0 0.9.0 2021-06-15 00:00:00
8 1.8.1 0.9.1 nan nan 2021-03-25 00:00:00
9 1.8.0 0.9.0 0.9.0 0.8.0 2021-03-04 00:00:00
10 1.7.1 0.8.2 0.8.1 0.7.2 2020-12-10 00:00:00
11 1.7.0 0.8.0 + 0.8.1 0.8.0 nan 2020-10-27 00:00:00
12 1.6.0 0.7.0 0.7.0 0.6.0 2020-07-28 00:00:00
13 1.5.1 0.6.1 nan 0.5.1 2020-06-18 00:00:00
14 1.5.0 0.6.0 0.6.0 0.5.0 2020-04-21 00:00:00
15 1.4.0 0.5.0 0.5.0 0.4.0 2020-01-15 00:00:00
16 1.3.1 0.4.2 nan 0.3.2 2019-11-07 00:00:00
17 1.3.0 0.4.1 nan 0.3.1 2019-10-22 00:00:00
18 1.2.0 0.4.0 nan 0.3.0 2019-08-08 00:00:00
19 1.1.0 0.3.0 nan nan 2019-04-30 00:00:00
20 1.0.0 0.2.2 nan nan 2018-12-07 00:00:00
21 0.4.1 nan nan nan 2018-07-26 00:00:00
22 0.4.0 0.2.1 0.2.3 nan 2018-04-24 00:00:00
23 0.3.1 nan nan nan 2018-04-03 00:00:00
24 0.3.0 nan nan nan 2018-01-25 00:00:00
25 initial nan nan nan 2016-09

PyTorch tensors

PyTorch defines a class called Tensor (torch.Tensor) to store and operate on homogeneous multidimensional rectangular arrays of numbers. PyTorch Tensors are similar to NumPy Arrays, but can also be operated on a CUDA-capable NVIDIA GPU. PyTorch has also been developing support for other GPU platforms, for example, AMD's ROCm and Apple's Metal Framework.[25]

PyTorch supports various sub-types of Tensors.[26]

Note that the term "tensor" here does not carry the same meaning as tensor in mathematics or physics. The meaning of the word in machine learning is only tangentially related to its original meaning as a certain kind of object in linear algebra.

Modules

Autograd module

PyTorch uses a method called automatic differentiation. A recorder records what operations have performed, and then it replays it backward to compute the gradients. This method is especially powerful when building neural networks to save time on one epoch by calculating differentiation of the parameters at the forward pass.[27]

Optim module

torch.optim is a module that implements various optimization algorithms used for building neural networks. Most of the commonly used methods are already supported, so there is no need to build them from scratch.[28]

nn module

PyTorch autograd makes it easy to define computational graphs and take gradients, but raw autograd can be a bit too low-level for defining complex neural networks. This is where the nn module can help. The nn module provides layers and tools to easily create a neural networks by just defining the layers of the network.[29]

PyTorch also contains many other useful submodules such as data loading utilities and distributed training functions.

Example

The following program shows the low-level functionality of the library with a simple example

import torch
dtype = torch.float
device = torch.device("cpu") # This executes all calculations on the CPU
# device = torch.device("cuda:0") # This executes all calculations on the GPU

# Creation of a tensor and filling of a tensor with random numbers
a = torch.randn(2, 3, device=device, dtype=dtype)
print(a) # Output of tensor A
# Output: tensor([[-1.1884,  0.8498, -1.7129],
#                  [-0.8816,  0.1944,  0.5847]])

# Creation of a tensor and filling of a tensor with random numbers
b = torch.randn(2, 3, device=device, dtype=dtype)
print(b) # Output of tensor B
# Output: tensor([[ 0.7178, -0.8453, -1.3403],
#                  [ 1.3262,  1.1512, -1.7070]])

print(a*b) # Output of a multiplication of the two tensors
# Output: tensor([[-0.8530, -0.7183,  2.58],
#                  [-1.1692,  0.2238, -0.9981]])

print(a.sum()) # Output of the sum of all elements in tensor A
# Output: tensor(-2.1540)

print(a[1,2]) # Output of the element in the third column of the second row (zero based)
# Output: tensor(0.5847)

print(a.max()) # Output of the maximum value in tensor A
# Output: tensor(-1.7129)

The following code-block shows an example of the higher level functionality provided nn module. A neural network with linear layers is defined in the example.

import torch
from torch import nn # Import the nn sub-module from PyTorch

class NeuralNetwork(nn.Module): # Neural networks are defined as classes
    def __init__(self): # Layers and variables are defined in the __init__ method
        super(NeuralNetwork, self).__init__() # Must be in every network.
        self.flatten = nn.Flatten() # Defining a flattening layer.
        self.linear_relu_stack = nn.Sequential( # Defining a stack of layers.
            nn.Linear(28*28, 512), # Linear Layers have an input and output shape
            nn.ReLU(), # ReLU is one of many activation functions provided by nn
            nn.Linear(512, 512),
            nn.ReLU(),
            nn.Linear(512, 10), 
        )

    def forward(self, x): # This function defines the forward pass.
        x = self.flatten(x)
        logits = self.linear_relu_stack(x)
        return logits

See also

References

  1. ^ Chintala, Soumith (1 September 2016). "PyTorch Alpha-1 release".
  2. ^ "Release 2.4.0". 24 July 2024. Retrieved 26 July 2024.
  3. ^ Claburn, Thomas (12 September 2022). "PyTorch gets lit under The Linux Foundation". The Register.
  4. ^ Yegulalp, Serdar (19 January 2017). "Facebook brings GPU-powered machine learning to Python". InfoWorld. Retrieved 11 December 2017.
  5. ^ Lorica, Ben (3 August 2017). "Why AI and machine learning researchers are beginning to embrace PyTorch". O'Reilly Media. Retrieved 11 December 2017.
  6. ^ Ketkar, Nikhil (2017). "Introduction to PyTorch". Deep Learning with Python. Apress, Berkeley, CA. pp. 195–208. doi:10.1007/978-1-4842-2766-4_12. ISBN 9781484227657.
  7. ^ "Natural Language Processing (NLP) with PyTorch – NLP with PyTorch documentation". dl4nlp.info. Retrieved 2017-12-18.
  8. ^ Patel, Mo (2017-12-07). "When two trends fuse: PyTorch and recommender systems". O'Reilly Media. Retrieved 2017-12-18.
  9. ^ Mannes, John. "Facebook and Microsoft collaborate to simplify conversions from PyTorch to Caffe2". TechCrunch. Retrieved 2017-12-18. FAIR is accustomed to working with PyTorch – a deep learning framework optimized for achieving state of the art results in research, regardless of resource constraints. Unfortunately in the real world, most of us are limited by the computational capabilities of our smartphones and computers.
  10. ^ Arakelyan, Sophia (2017-11-29). "Tech giants are using open source frameworks to dominate the AI community". VentureBeat. Retrieved 2017-12-18.
  11. ^ "PyTorch strengthens its governance by joining the Linux Foundation". pytorch.org. Retrieved 2022-09-13.
  12. ^ "The C++ Frontend". PyTorch Master Documentation. Retrieved 2019-07-29.
  13. ^ Karpathy, Andrej. "PyTorch at Tesla - Andrej Karpathy, Tesla".
  14. ^ "Uber AI Labs Open Sources Pyro, a Deep Probabilistic Programming Language". Uber Engineering Blog. 2017-11-03. Retrieved 2017-12-18.
  15. ^ PYTORCH-TRANSFORMERS: PyTorch implementations of popular NLP Transformers, PyTorch Hub, 2019-12-01, retrieved 2019-12-01
  16. ^ PYTORCH-Lightning: The lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate, Lightning-Team, 2020-06-18, retrieved 2020-06-18
  17. ^ "Ecosystem Tools". pytorch.org. Retrieved 2020-06-18.
  18. ^ GitHub - catalyst-team/catalyst: Accelerated DL & RL, Catalyst-Team, 2019-12-05, retrieved 2019-12-05
  19. ^ "Ecosystem Tools". pytorch.org. Retrieved 2020-04-04.
  20. ^ "PyTorch – About". pytorch.org. Archived from the original on 2018-06-15. Retrieved 2018-06-11.
  21. ^ "Caffe2 Merges With PyTorch". 2018-04-02.
  22. ^ Edwards, Benj (2022-09-12). "Meta spins off PyTorch Foundation to make AI framework vendor neutral". Ars Technica.
  23. ^ "PyTorch 2.0 brings new fire to open-source machine learning". VentureBeat. 15 March 2023. Retrieved 16 March 2023.
  24. ^ PyTorch versions inception to date, retrieved 23 July 2023
  25. ^ "Introducing Accelerated PyTorch Training on Mac". pytorch.org. Retrieved 2022-06-04.
  26. ^ "An Introduction to PyTorch – A Simple yet Powerful Deep Learning Library". analyticsvidhya.com. 2018-02-22. Retrieved 2018-06-11.
  27. ^ "The Fundamentals of Autograd — PyTorch Tutorials 2.0.1+cu117 documentation". pytorch.org. Retrieved 16 May 2023.
  28. ^ "torch.optim — PyTorch 2.0 documentation". pytorch.org. Retrieved 16 May 2023.
  29. ^ "torch.nn — PyTorch 2.0 documentation". pytorch.org. Retrieved 16 May 2023.