Author: Niranjan Kumar

0 POSTS0 COMMENTS
https://medium.com/@niranjankumarc
Niranjan Kumar is working as a Senior Consultant Data Science at Allstate India. He is passionate about Deep Learning and Artificial Intelligence. He writes about the latest tools and technologies in the field of Deep Learning. He is one of the top writers in Artificial Intelligence at Medium. A Graduate of Praxis Business School, Niranjan Kumar holds a degree in Data Science. Feel free to contact him via LinkedIn for collaboration on projects

Classifying the Name Nationality of a Person using LSTM and Pytorch

Recurrent Neural Networks(RNN) are a type of Neural Network where the output from the previous step is fed as input to the current step. In the case of Convolution Neural Networks (CNN), the output from the softmax layer in the context of image classification is entirely independent of the previous input image.

Introduction to Image Classification using Pytorch to Classify FashionMNIST Dataset

In this blog post, we will discuss how to build a Convolution Neural Network that can classify Fashion MNIST data using Pytorch on Google Colaboratory. The way we do that is, first we will download the data using Pytorch DataLoader class and then we will use LeNet-5 architecture to build our model. Finally, we will train our model on GPU and evaluate it on the test data.

Exploratory Data Analysis Tutorial: Analyzing the Food Culture of Bangalore

In this blog post, we will discuss how to perform exploratory data analysis by creating awesome visualizations using matplotlib and seaborn by taking a real-world data set.

Building a Feedforward Neural Network using Pytorch NN Module

Feedforward neural networks are also known as Multi-layered Network of Neurons (MLN). These network of models are called feedforward because the information only travels forward in...