Learning PyTorch with Examples
Type Web
Created unavailable
Identifier unavailable
Description
This tutorial introduces the fundamental concepts of PyTorch through self-contained examples. At its core, PyTorch provides two main features: An n-dimensional Tensor, similar to numpy but can run on GPUs Automatic differentiation for building and training neural networks We will use a problem of fitting y=sin(x) with a third order polynomial as our running example. The network will have four parameters, and will be trained with gradient descent to fit random data by minimizing the Euclidean distance between the network output and the true output.
Relations
Edit details Edit relations Attach new author Attach new topic Attach new resource
10.0 /10
useless alright awesome
from 1 review
- Resource level 2.0 /10
- beginner intermediate advanced
- Resource clarity 10.0 /10
- hardly clear sometimes unclear perfectly clear
- Reviewer's background 3.0 /10
- none basics intermediate advanced expert
Comments 1
10 rating 2 level 10 clarity 3 user's background
Awesome to get you started with PyTorch through hands on example.
Especially good if you already know NumPy and TensorFlow to quickly learn the basics of using PyTorch.