Skip to content

Commit 742b70a

Browse files
authored
Added a welcome phrase at the start of Pytorch notebooks (#474)
1 parent 0ee7737 commit 742b70a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

s1_development_environment/exercise_files/1_Tensors_in_PyTorch.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"source": [
77
"# Introduction to Deep Learning with PyTorch\n",
88
"\n",
9+
"Welcome to the Pytorch Notebooks!\n",
10+
"\n",
911
"In this notebook, you will get an introduction to [PyTorch](http://pytorch.org/), which is a framework for building and training neural networks (NN). ``PyTorch`` in a lot of ways behaves like the arrays you know and love from Numpy. These Numpy arrays, after all, are just *tensors*. PyTorch takes these tensors and makes it simple to move them to GPUs for the faster processing needed when training neural networks. It also provides a module that automatically calculates gradients (for backpropagation!) and another module specifically for building neural networks. All together, PyTorch ends up being more coherent with **Python** and the ``Numpy/Scipy`` stack compared to *TensorFlow* and other frameworks.\n",
1012
"\n"
1113
]

0 commit comments

Comments
 (0)