1. Dive Into Deep Learning
My own notes for the book Dive Into Deep Learning.
2. pytorch
The code examples in the book are implemented in PyTorch.
3. d2l-zh-pytorch.pdf: The Chinese version of Dive Into Deep Learning, with PyTorch code examples.
RiYueGuangHua/
├── dataset/
|
├── env/
|
├── imgs/
|
├── logs/
|
├── model/
|
├── NLP/
- Beginner's Example - Linear Regression Model
- Tensors and Data Types
- Classification Example - Credit Card Fraud
- Multilayer Perceptron
- Binary classification problem and multilayer perceptron
- Multi classification problems and general training functions
- Handwritten digit classification and fully connected model
- Practice - Fashion MINST and fully connected model
- Handwritten digit classification and Convolutional Neural Networks
- Weather classification and convolutional neural networks
- Pre trained network VGG16
- Pre trained network RESNET18
- Pre trained network RESNET101
- Preservation of models and their weights
- The second method of image input - customize Class Dataset
- Residual Network (ResNet)
- Inception module
- Dense Network (DenseNet)
- Image localization and segmentation
- UNET Image Semantic Segmentation
- LinkNet Image Semantic Segmentation
- Text Representation
- Simple Text Classification
- RNN Text Classification
- LSTM GRU Cell Text Classification
- LSTM GRU Text Classification
- Text Classification Example - English Comment Emotion Prediction
- Text Classification Example - Chinese Evaluation Emotion Prediction
- Transformer Encode Text Classification
- Sequence Prediction Example - Beijing Air Pollution Prediction
- Tensorboard Visualization
Xiaotudui/
├── dataset/
|
├── images/
|
├── logs/
|
├── model/
Pycharm Project From Xiaotudui