
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.
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 TutorialMulti-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 Tutorial2D 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 TutorialBreast 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 TutorialDog 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 TutorialCredit 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 TutorialText 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 TutorialCustomer 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 TutorialAirline 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 TutorialWords 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 TutorialHuman 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 TutorialMulti-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 TutorialBuilding 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 TutorialGetting 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 TutorialSentiment Classification with DistilBERT
Fine-tune DistilBERT for sentiment classification using ktrain. Covers text preprocessing, DistilBERT tokenization, one-cycle training, and model deployment.
Read TutorialGoogle 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 TutorialSentiment 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 TutorialIMDB 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 TutorialPoetry 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