Mathspp Blog

342 391,958 32,910
articles words lines of code

In this introductory tutorial, you will build a recurrent neural network (RNN) with PyTorch.

Running Python inside ChatGPT shows some amazing capabilities that ChatGPT has to understand Python code and evaluate it for you.

Today I learned about multi-channel transposed convolutions.

Today I learned about the transposed convolution transformation in CNNs.

Today I learned about a fake chess-playing AI from the 1700s.

In this article of the NNFwP series we'll do the “student-teacher” experiment with two neural networks, where one network will learn directly from the other.

In the fifth article of this short series we will be handling some subtleties that we overlooked in our experiment to classify handwritten digits from the MNIST dataset.

In the fourth article of this short series we will apply our neural network framework to recognise handwritten digits.

The third article of this short series concerns itself with the implementation of the backpropagation algorithm, the usual choice of algorithm used to enable a neural network to learn.

In the second article of this short series we will create a class for a generic neural network and we will also see how to assess the quality of the output of a network, essentially preparing ourselves to implement the backpropagation algorithm.

This is the first article in a series to implement a neural network from scratch. We will set things up in terms of software to install, knowledge we need, and some code to serve as backbone for the remainder of the series.