WBC-Classification

Classification of WBC ( White Blood Cells ) with CNN . (Convectional Neural Network) — Donate

HitCount

DATASET

Train and save trained model

Use this command to train the model and save model

git clone 
cd WBC-Classification
python3 learning.py -d ./CNN/datasets/TRAIN/ -m ./TrainedModel/model_epoch_100.hdf5

after train you will see result plot:

Test the model

python3 load_test_model.py -d ./CNN/datasets/TEST -m ./TrainedModel/model_epoch_100.hdf5

NOTE

default epoch count is 100. for change it, just edit cp variable in learning.py

Todo