Author Archives: Dr. Vaibhav Kumar - Page 2
There is a webinar going to be held on 1st August 2020 on "What is the Chartered Data Scientist Designation"
The post Webinar: What is Chartered Data Scientist Designation appeared first on Analytics India Magazine.
In this article, we will demonstrate the implementation of DeepDream program to dreamify images.
The post Implementing DeepDream using Tensorflow: Dreamify Images using Deep Learning appeared first on Analytics India Magazine.
In this article, we will show how to detect objects seen in the videos in only 5 steps. We will use the pixellib library in this task which detects objects using instance segmentation. We will also use the pre-trained Mask R-CNN model to identify the objects seen in the videos. In this implementation, we will detect vehicle objects in traffic video.
The post Hands-On Guide To Detect Objects In Video In 5 Steps appeared first on Analytics India Magazine.
In this article, we will define a Convolutional Autoencoder in PyTorch and train it on the CIFAR-10 dataset in the CUDA environment to create reconstructed images.
The post How to Implement Convolutional Autoencoder in PyTorch with CUDA appeared first on Analytics India Magazine.
In this article, we will demonstrate the implementation of a Deep Autoencoder in PyTorch for reconstructing images. This deep learning model will be trained on the MNIST handwritten digits and it will reconstruct the digit images after learning the representation of the input images.
The post Hands-On Guide to Implement Deep Autoencoder in PyTorch for Image Reconstruction appeared first on Analytics India Magazine.
In this article, we will demonstrate the implementation of ResNet50, a Deep Convolutional Neural Network, in PyTorch with TPU. The model will be trained and tested in the PyTorch/XLA environment in the task of classifying the CIFAR10 dataset. We will also check the time consumed in training this model in 50 epochs.
The post Hands-On Guide to Implement ResNet50 in PyTorch with TPU appeared first on Analytics India Magazine.
In this article, we will train a Recurrent Neural Network (RNN) in PyTorch on the names belonging to several languages. After successful training, the RNN model will predict names belonging to a language that start with an input alphabet letter.
The post Recurrent Neural Network in PyTorch for Text Generation appeared first on Analytics India Magazine.
In this article, we will demonstrate the multi-class text classification using TorchText that is a powerful Natural Language Processing library in PyTorch. For this classification, a model will be used that is composed of the EmbeddingBag layer and linear layer. The EmbeddingBag deals with the text entries with varying length by computing the mean value of the bag of embeddings. This model will be trained on the DBpedia dataset with texts belonging to the 14 classes. After successful training, the model will predict the class label for the input text.
The post Multi-Class Text Classification in PyTorch using TorchText appeared first on Analytics India Magazine.
In this article, we will demonstrate the implementation of a Recurrent Neural Network (RNN) using PyTorch in the task of multi-class text classification. This RNN model will be trained on the names of the person belonging to 18 language classes. After successful training, the model will predict the language category for a given name that it is most likely to belong.
The post Name Language Prediction using Recurrent Neural Network in PyTorch appeared first on Analytics India Magazine.
This article demonstrates how we can implement a Deep Learning model using PyTorch with TPU to accelerate the training process. Here, we define a Convolutional Neural Network (CNN) model using PyTorch and train this model in the PyTorch/XLA environment. XLA connects the CNN model with the Google Cloud TPU (Tensor Processing Unit) in the distributed multiprocessing environment. In this implementation, 8 TPU cores are used to create a multiprocessing environment.
The post How To Implement CNN Model Using PyTorch With TPU appeared first on Analytics India Magazine.