This tutorial is intended for someone who wants to understand how Recurrent Neural Network works, no prior knowledge about RNN is required. We will implement the most simple RNN model – Elman Recurrent Neural Network. To get a better understanding …

A Quick Introduction to PyTorch
PyTorch is an open source machine learning library for Python. In this tutorial, we will provide an introduction to the main PyTorch features, tensor library, and autograd – automatic differentiation package.
Tensor Library
The core data structure in PyTorch is …

Machine Learning with Scala – Linear Regression
Linear regression is one of the most popular machine learning algorithms. It’s used when we want to predict continuous values, like predicting stock prices. In this tutorial, we will build linear regression model from scratch and train it using …

Learn how neural networks work with a Neural Network Simulator
Neural Network Simulator is a real feedforward neural network running in your browser. The simulator will help you understand how artificial neural network trained using backpropagation algorithm works. In this tutorial, we will explain several important concepts and techniques used …