MontaEllis / Pytorch-Medical-Classification

This repository is an unoffical PyTorch implementation of Medical classification in 2D and 3D.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pytorch Medical Classification

Read Chinese Introduction:Here!

Recent Updates

  • 2021.7.7 The train and test codes are released.

Requirements

  • pytorch1.7
  • torchio<=0.18.20
  • python>=3.6

Notice

  • You can modify hparam.py to determine whether 2D or 3D classification and whether multicategorization is possible.
  • We provide algorithms for almost all 2D and 3D classification.
  • This repository is compatible with almost all medical data formats(e.g. png, nii.gz, nii, mhd, nrrd, ...), by modifying fold_arch in hparam.py of the config.
  • If you want to use a multi-category program, please modify the corresponding codes in data_function.py by yourself. I cannot identify your specific categories.

Prepare Your Dataset

Example

if your source dataset is :

categpry-0
├── source_1.png
├── source_2.png
├── source_3.png
└── ...
categpry-1
├── source_1.png
├── source_2.png
├── source_3.png
└── ...

then your should modify fold_arch as *.png, source_train_0_dir as categpry-0 and source_train_1_dir as categpry-1 in hparam.py

Training

  • without pretrained-model
set hparam.train_or_test to 'train'
python main.py
  • with pretrained-model
set hparam.train_or_test to 'train'
set hparam.ckpt to True
python main.py

Inference

  • testing
set hparam.train_or_test to 'test'
python main.py

Done

Network

  • 2D
  • alexnet
  • densenet
  • googlenet
  • mobilenet
  • nasnet
  • resnet
  • resnext
  • vggnet
  • 3D
  • densenet3d
  • resnet3d
  • resnext3d

TODO

  • dataset
  • benchmark

By The Way

This project is not perfect and there are still many problems. If you are using this project and would like to give the author some feedbacks, you can send Kangneng Zhou an email, his wechat number is: ellisgege666

Acknowledgements

This repository is an unoffical PyTorch implementation of Medical segmentation in 3D and 2D and highly based on pytorch-cifar100 and torchio.Thank you for the above repo. Thank you to Cheng Chen and Weili Jiang for all the help I received.

About

This repository is an unoffical PyTorch implementation of Medical classification in 2D and 3D.

License:MIT License


Languages

Language:Python 100.0%