-
Book Overview & Buying
-
Table Of Contents
Time Series with PyTorch
By :
Neural networks are fundamentally mathematical equations into which we feed data that is encapsulated within tensors. These equations are calculated through computational graphs with autograd. Neurons within artificial neural networks essentially act as different parts of an equation, which are mathematically ‘connected’. We use computational graphs to build these functions and keep track of how values within a network both relate to each other and change, via our calculations with automatic differentiation (autograd). The reason for PyTorch’s dominance in the field of deep learning is in part due to its dynamic approach in constructing computational graphs and its application of autograd. Don’t worry if you don’t understand everything, we’ll discuss neural networks in the next chapter.
Computational graph, also referred to as a directed acyclic graph (DAG), captures sequences of operations performed...