Author Archive | Adrian Tam

Photo by <a href="https://unsplash.com/photos/2bJGj7sIclQ">Sam Deng</a>. Some rights reserved.

Building a Regression Model in PyTorch

PyTorch library is for deep learning. Some applications of deep learning models are to solve regression or classification problems. In this post, you will discover how to use PyTorch to develop and evaluate neural network models for regression problems. After completing this post, you will know: How to load data from scikit-learn and adapt it […]

Continue Reading
Building a Multiclass Classification Model in PyTorch<br/>Photo by <a href="https://unsplash.com/photos/0BoRlSmNmc0">Cheung Yin</a>. Some rights reserved.

Building a Multiclass Classification Model in PyTorch

The PyTorch library is for deep learning. Some applications of deep learning models are used to solve regression or classification problems. In this tutorial, you will discover how to use PyTorch to develop and evaluate neural network models for multi-class classification problems. After completing this step-by-step tutorial, you will know: How to load data from […]

Continue Reading
billy-kwok-eCzKRT7svdc-unsplash

Using Autograd in PyTorch to Solve a Regression Problem

We usually use PyTorch to build a neural network. However, PyTorch can do more than this. Because PyTorch is also a tensor library with automatic differentiation capability, you can easily use it to solve a numerical optimization problem with gradient descent. In this post, you will learn how PyTorch’s automatic differentiation engine, autograd, works. After […]

Continue Reading
Manipulating Tensors in PyTorch. Photo by <a href="https://unsplash.com/photos/n4BW2LPf7t8">Big Dodzy</a>. Some rights reserved.

Manipulating Tensors in PyTorch

PyTorch is a deep-learning library. Just like some other deep learning libraries, it applies operations on numerical arrays called tensors. In the simplest terms, tensors are just multidimensional arrays. When we deal with the tensors, some operations are used very often. In PyTorch, there are some functions defined specifically for dealing with tensors. In the […]

Continue Reading
norbert-braun-uU8n5LuzpTc-unsplash

Building Transformer Models with Attention Crash Course. Build a Neural Machine Translator in 12 Days

Transformer is a recent breakthrough in neural machine translation. Natural languages are complicated. A word in one language can be translated into multiple words in another, depending on the context. But what exactly a context is, and how you can teach the computer to understand the context was a big problem to solve. The invention […]

Continue Reading