From 80a721cecfda539cfaeb550e437844b17834cf4a Mon Sep 17 00:00:00 2001 From: Joel Schlosser <75754324+jbschlosser@users.noreply.github.com> Date: Tue, 29 Jun 2021 02:43:48 -0400 Subject: [PATCH] Created nn Basics (markdown) --- nn-Basics.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 nn-Basics.md diff --git a/nn-Basics.md b/nn-Basics.md new file mode 100644 index 0000000..ef814f7 --- /dev/null +++ b/nn-Basics.md @@ -0,0 +1,6 @@ +## What is nn? +The `torch.nn` library is the component of PyTorch that provides building blocks for neural networks. Its core abstraction is `nn.Module`, which encapsulates stateful computation with learnable parameters. Modules integrate with the [[autograd|Autograd-Basics]] system and are generally trained using optimizers provided in [`torch.optim`](https://pytorch.org/docs/stable/optim.html). + +## Learn about torch.nn and Modules +* [Introduction to Modules](https://pytorch.org/docs/stable/notes/modules.html) +* [Neural networks tutorial](https://pytorch.org/tutorials/beginner/blitz/neural_networks_tutorial.html) \ No newline at end of file