Deep Learning Architectures in Our Collection
Each project focuses on a specific architecture and problem domain. You get to see how the architecture works in practice, not just in theory.
Convolutional Neural Networks (CNNs)
CNN projects handle image classification (medical images, plant diseases, face recognition), object detection (YOLO-based), and image segmentation. Models use architectures like ResNet, VGG, EfficientNet, and custom CNNs. Transfer learning projects show you how to fine-tune pre-trained models on your own dataset with just a few hundred images.
Transformers and Attention Models
Transformer projects cover text classification, question answering, summarization, and named entity recognition. Some use pre-trained models from Hugging Face (BERT, GPT-2, T5) with fine-tuning scripts. Others build transformer architectures from scratch so you understand the attention mechanism at the code level.
Generative Models (GANs and VAEs)
GAN projects include face generation with DCGAN, style transfer with CycleGAN, image super-resolution with SRGAN, and text-to-image generation. Each project includes the generator and discriminator architectures, training loop with loss visualization, and a script for generating new samples from the trained model.
Sequence Models (LSTMs and GRUs)
Sequence model projects predict stock prices, generate text, compose music, and classify time series data. You'll see proper sequence padding, embedding layers, bidirectional LSTM configurations, and attention mechanisms added to recurrent networks.