File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,11 +54,11 @@ unfortunately numpy won't be enough for modern deep learning.
5454Here we introduce the most fundamental PyTorch concept: the **Tensor **.
5555A PyTorch Tensor is conceptually identical to a numpy array: a Tensor is
5656an n-dimensional array, and PyTorch provides many functions for
57- operating on these Tensors. Like numpy arrays, PyTorch Tensors do not
58- know anything about deep learning or computational graphs or gradients;
59- they are a generic tool for scientific computing.
57+ operating on these Tensors. Behind the scenes, Tensors can keep track of
58+ a computational graph and gradients, but they're also useful as a
59+ generic tool for scientific computing.
6060
61- However unlike numpy, PyTorch Tensors can utilize GPUs to accelerate
61+ Also unlike numpy, PyTorch Tensors can utilize GPUs to accelerate
6262their numeric computations. To run a PyTorch Tensor on GPU, you simply
6363need to cast it to a new datatype.
6464
You can’t perform that action at this time.
0 commit comments