Skip to content

Initial proofreading #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Part2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
"source": [
"## PyTorch\n",
"\n",
"[PyTorch](https://pytorch.org) is a flexible scientific computing package targetted towards gradient-based deep learning. Its low-level API closely follows [NumPy](http://www.numpy.org/). However, there are a several key additions:\n",
"[PyTorch](https://pytorch.org) is a flexible scientific computing package targeted towards gradient-based deep learning. Its low-level API closely follows [NumPy](http://www.numpy.org/). However, there are several key additions:\n",
"\n",
"- GPU support!\n",
"- Automatic differentiation!\n",
"- Deep learning modules!\n",
"- Data loading!\n",
"- And other generally useful goodies.\n",
"\n",
"If you don't have GPU enabled hardward, don't worry. Like NumPy, PyTorch runs pre-compiled, highly efficient C code to handle all intensive backend functions.\n",
"If you don't have GPU enabled hardware, don't worry. Like NumPy, PyTorch runs pre-compiled, highly efficient C code to handle all intensive backend functions.\n",
"\n",
"Go to pytorch.org to download the correct package for your computing environment."
]
Expand Down