Skip to content

fuyongXu/deeplearning_models_classifier_tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pytorch_image_classifier_tutorial

This repository uses Pytorch to implement the popular CNN architectures, using the dataset CIFAR. The following is the reference paper:

Architecture

Regularization

Learning Rate Scheduler

Requirements

  • Python >= 3.5
  • PyTorch = 0.4 or 1.0
  • Tensorboard (if you want to use the tensorboard for visualization)
  • pyyaml, easydict, tensorboardX

Usage

Run the command for training as following:

##1 GPU for lenet
python -u train.py --work-path ./experiments/cifar10/lenet
##resume from checkpoint
python -u train.py --work-path ./experiments/cifar10/lenet --resume
##2 GPUs for resnet1202
CUDA_VISIBLE_DEVICES=0,1 python -u train.py --work-path ./experiments/cifar10/preresnet20
##4 GPUs for densenet190bc
CUDA_VISIBLE_DEVICES=0,1,2,3 python -u train.py --work-path ./experiments/cifar10/densenet100bc

Feel free to contact me if you have any suggestions or questions, issues are welcome, create a PR if you find any bugs or you want to contribute.:smile:

About

使用常见的CNN架构实现CIFAR分类。

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages