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.
Master Neural Networks, Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs/LSTMs), Computer Vision, and advanced architectures using PyTorch, TensorFlow, and Keras.
Browse, search, and work through all available articles for this category.
Classify objects using the pre-trained VGG-16 model in Keras. Covers VGG architecture, loading ImageNet weights, image preprocessing, and top-5 predictions.
Classify movie genres from poster images using a 2D CNN. Covers multi-label classification, ImageDataGenerator, Conv2D with BatchNorm, and sigmoid output.
Train a 2D Convolutional Neural Network on CIFAR-10 using TensorFlow 2.0. Covers Conv2D, MaxPooling, Dropout, model training, and confusion matrix evaluation.
Detect breast cancer using a 1D CNN in TensorFlow 2.0. Covers Conv1D, BatchNormalization, Dropout, Adam optimizer, and binary classification on medical data.
Classify dog and cat images using a 2D CNN in TensorFlow 2.0. Covers VGG16 architecture, Dropout, BatchNormalization, ImageDataGenerator, and SGD optimizer.
Detect fraudulent credit card transactions using a 1D CNN in TensorFlow. Covers dataset balancing, StandardScaler, Conv1D, BatchNormalization, and MaxPool1D.
Predict bank customer satisfaction using a 1D CNN in TensorFlow. Covers feature selection, StandardScaler, Conv1D layers, and binary classification training.
Generate Shakespearean text using stacked LSTM in TensorFlow. Covers corpus cleaning, tokenization, sequence preparation, Embedding layer, and word prediction.
Predict airline passenger numbers using an LSTM in TensorFlow. Covers time-series data preparation, MinMaxScaler, look-back windows, and LSTM regression.
Recognize human activities from accelerometer data using a 2D CNN. Covers data balancing, LabelEncoder, frame-based feature extraction, and confusion matrix.
Predict household power consumption for the next week using LSTM. Covers multivariate time-series preprocessing, MinMaxScaler, and multi-step LSTM forecasting.
Predict Google stock prices using a stacked LSTM in TensorFlow. Covers RNN concepts, MinMaxScaler, data windowing, LSTM layers, and time-series visualization.
Classify IMDB reviews as positive or negative using LSTM. Covers word-to-integer encoding, pad sequences, Embedding layer, LSTM, and binary classification.
Generate poetry with TensorFlow and LSTM. Covers tokenization, sequence preparation, Embedding layers, stacked LSTM training, and next-word prediction.
Apply GloVe vectors for Twitter sentiment analysis in TensorFlow. Covers text preprocessing, GloVe embedding matrix, Conv1D model, and binary classification.
Fine-tune DistilBERT for sentiment classification using ktrain. Covers text preprocessing, DistilBERT tokenization, one-cycle training, and model deployment.
Fine-tune BERT for IMDB movie review sentiment classification using ktrain. Covers Transformer architecture, BERT tokenization, and one-cycle fine-tuning.
Build your first ANN with TensorFlow 2.0 and Keras. Covers activation functions, optimizers, backpropagation, and binary classification on tabular data.
Get started with TensorFlow 2.0 by classifying Fashion MNIST images. Covers sequential models, Dense layers, ReLU activation, training, and prediction.