Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 2.56 KB

ModelZoo.md

File metadata and controls

32 lines (24 loc) · 2.56 KB

If you want to learn classic CNN models

1. 2D Convolutional Neural Network

I have builded the most popular CNN in pytorch, they are slightly modifed to be able to accept any input image size.

You can find a list of models ./models/__init__.py

2. 3D Convolutional Neural Network

3D CNN are mainly used in video, medical image etc.

I easily achieve 9th in the medical image classification competition with DenseNet201_3d in ModelFeast!

3. CNN-RNN

CNN-RNN are mainly used in video, medical image etc. This part is still on progress. Not avalible to train now, but model architecture can been seen here.