Deep Learning

Master Neural Networks, Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs/LSTMs), Computer Vision, and advanced architectures using PyTorch, TensorFlow, and Keras.

Deep Learning Tutorials (19)

Browse, search, and work through all available articles for this category.

19 shown · All
Image Classification with Pre-trained VGG-16
Sep 20, 20205 min readCNNs & Image Classification

Image Classification with Pre-trained VGG-16

Classify objects using the pre-trained VGG-16 model in Keras. Covers VGG architecture, loading ImageNet weights, image preprocessing, and top-5 predictions.

Read Tutorial
Multi-Label Movie Poster Classification with CNN
Sep 7, 202021 min readCNNs & Image Classification

Multi-Label Movie Poster Classification with CNN

Classify movie genres from poster images using a 2D CNN. Covers multi-label classification, ImageDataGenerator, Conv2D with BatchNorm, and sigmoid output.

Read Tutorial
2D CNN on CIFAR-10 with TensorFlow 2.0
Sep 6, 202019 min readCNNs & Image Classification

2D CNN on CIFAR-10 with TensorFlow 2.0

Train a 2D Convolutional Neural Network on CIFAR-10 using TensorFlow 2.0. Covers Conv2D, MaxPooling, Dropout, model training, and confusion matrix evaluation.

Read Tutorial
Breast Cancer Detection Using CNN
Sep 5, 202022 min readCNNs & Image Classification

Breast Cancer Detection Using CNN

Detect breast cancer using a 1D CNN in TensorFlow 2.0. Covers Conv1D, BatchNormalization, Dropout, Adam optimizer, and binary classification on medical data.

Read Tutorial
Dog vs Cat Classification with CNN
Sep 4, 202023 min readCNNs & Image Classification

Dog vs Cat Classification with CNN

Classify dog and cat images using a 2D CNN in TensorFlow 2.0. Covers VGG16 architecture, Dropout, BatchNormalization, ImageDataGenerator, and SGD optimizer.

Read Tutorial
Credit Card Fraud Detection using CNN
Sep 3, 202025 min readCNNs & Image Classification

Credit Card Fraud Detection using CNN

Detect fraudulent credit card transactions using a 1D CNN in TensorFlow. Covers dataset balancing, StandardScaler, Conv1D, BatchNormalization, and MaxPool1D.

Read Tutorial
Text Generation using Tensorflow, Keras and LSTM
Aug 31, 202029 min readRNNs, LSTMs & Time Series

Text Generation using Tensorflow, Keras and LSTM

Generate Shakespearean text using stacked LSTM in TensorFlow. Covers corpus cleaning, tokenization, sequence preparation, Embedding layer, and word prediction.

Read Tutorial
Customer Satisfaction Prediction with CNN
Aug 29, 202028 min readCNNs & Image Classification

Customer Satisfaction Prediction with CNN

Predict bank customer satisfaction using a 1D CNN in TensorFlow. Covers feature selection, StandardScaler, Conv1D layers, and binary classification training.

Read Tutorial
Airline Passenger Prediction using RNN - LSTM
Aug 29, 202017 min readRNNs, LSTMs & Time Series

Airline Passenger Prediction using RNN - LSTM

Predict airline passenger numbers using an LSTM in TensorFlow. Covers time-series data preparation, MinMaxScaler, look-back windows, and LSTM regression.

Read Tutorial
Words Embedding using GloVe Vectors
Aug 28, 202028 min readTransfer Learning & Transformers

Words Embedding using GloVe Vectors

Apply GloVe vectors for Twitter sentiment analysis in TensorFlow. Covers text preprocessing, GloVe embedding matrix, Conv1D model, and binary classification.

Read Tutorial
Human Activity Recognition with CNN
Aug 28, 202030 min readRNNs, LSTMs & Time Series

Human Activity Recognition with CNN

Recognize human activities from accelerometer data using a 2D CNN. Covers data balancing, LabelEncoder, frame-based feature extraction, and confusion matrix.

Read Tutorial
Multi-Step Time Series Prediction with LSTM
Aug 28, 202030 min readRNNs, LSTMs & Time Series

Multi-Step Time Series Prediction with LSTM

Predict household power consumption for the next week using LSTM. Covers multivariate time-series preprocessing, MinMaxScaler, and multi-step LSTM forecasting.

Read Tutorial
Building Your First ANN with TensorFlow 2.0
Aug 27, 202021 min readGetting Started

Building Your First ANN with TensorFlow 2.0

Build your first ANN with TensorFlow 2.0 and Keras. Covers activation functions, optimizers, backpropagation, and binary classification on tabular data.

Read Tutorial
Getting Started with TensorFlow 2.0 and Keras
Aug 27, 202030 min readGetting Started

Getting Started with TensorFlow 2.0 and Keras

Get started with TensorFlow 2.0 by classifying Fashion MNIST images. Covers sequential models, Dense layers, ReLU activation, training, and prediction.

Read Tutorial
Sentiment Classification with DistilBERT
Aug 25, 202015 min readTransfer Learning & Transformers

Sentiment Classification with DistilBERT

Fine-tune DistilBERT for sentiment classification using ktrain. Covers text preprocessing, DistilBERT tokenization, one-cycle training, and model deployment.

Read Tutorial
Google Stock Price Prediction using RNN - LSTM
Aug 24, 202020 min readRNNs, LSTMs & Time Series

Google Stock Price Prediction using RNN - LSTM

Predict Google stock prices using a stacked LSTM in TensorFlow. Covers RNN concepts, MinMaxScaler, data windowing, LSTM layers, and time-series visualization.

Read Tutorial
Sentiment Classification Using BERT
Aug 23, 202021 min readTransfer Learning & Transformers

Sentiment Classification Using BERT

Fine-tune BERT for IMDB movie review sentiment classification using ktrain. Covers Transformer architecture, BERT tokenization, and one-cycle fine-tuning.

Read Tutorial
IMDB Sentiment Classification with LSTM
Aug 23, 202016 min readRNNs, LSTMs & Time Series

IMDB Sentiment Classification with LSTM

Classify IMDB reviews as positive or negative using LSTM. Covers word-to-integer encoding, pad sequences, Embedding layer, LSTM, and binary classification.

Read Tutorial
Poetry Generation with TensorFlow and LSTM
Aug 9, 202019 min readRNNs, LSTMs & Time Series

Poetry Generation with TensorFlow and LSTM

Generate poetry with TensorFlow and LSTM. Covers tokenization, sequence preparation, Embedding layers, stacked LSTM training, and next-word prediction.

Read Tutorial