tyui592 / knowledge_distillation

PyTorch implementation of "Distilling the Knowledge in a Neural Network"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Distilling the Knowledge in a Neural Network

Requirements

  • torch (version: 1.7.1)
  • torchvision (version: 0.8.2)

Usage

1. Train a Large Network

$ python main.py --train_flag --gpu_no 0 --data CIFAR10 --batch_size 128 --epoch 300 --lr 0.1 --optim SGD --sgd_momentum 0.9 --num_workers 4 --weight_decay 0.0005 --save_path ./WEIGHTS/0 --model resnet18 --temperature 1 --distillation_weight 0.0 --scheduler MStepLR --lr_milestones 150 225 --print_interval 50 --valid_interval 20

2. Train a Small Network (without knowledge distillation)

$ python main.py --train_flag --gpu_no 0 --data CIFAR10 --batch_size 128 --epoch 300 --lr 0.1 --optim SGD --sgd_momentum 0.9 --num_workers 4 --weight_decay 0.0005 --save_path ./WEIGHTS/1 --model 1 --temperature 1 --distillation_weight 0.0 --scheduler MStepLR --lr_milestones 150 225 --print_interval 50 --valid_interval 20

3. Train a Small Network (with knowledge distillation)

$ python main.py --train_flag --gpu_no 0 --data CIFAR10 --batch_size 128 --epoch 300 --lr 0.1 --optim SGD --sgd_momentum 0.9 --num_workers 4 --weight_decay 0.0005 --save_path ./WEIGHTS/2 --model 1 --temperature 30 --distillation_weight 0.1 --scheduler MStepLR --lr_milestones 150 225 --print_interval 50 --valid_interval 20 --teacher_load ./WEIGHTS/0/check_point_300.pth

Experimental Result

Top-1 accuracy of the trained model (300 epochs) with CIFAR10 Test Dataset.

Check more details in scripts.sh and logs

Base Models

Large Network Small Network (w/o distillation)
95.21 % 73.26 %

Effect of the Knowledge Distillation

Train the Small Network with the trained Large Network

temperature accuracy
1 73.74 %
10 74.62 %
30 75.81 %
50 75.65 %
100 75.47 %

Effect of the Random-ness (w/o knowledge distillation)

random seed accuracy
777 73.26 %
10 75.12 %
20 73.91 %
30 75.64 %

Reference

About

PyTorch implementation of "Distilling the Knowledge in a Neural Network"


Languages

Language:Python 90.5%Language:Shell 9.5%