In Masterarbeit:"Anomalie-Detektion in Zellbildern zur Anwendung der Leukämieerkennung" verwendete Methode des 3. Platzes der ISBI2019.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.3KB

2 years ago
1234567891011121314151617181920212223242526272829303132333435
  1. # C-NMC Challenge
  2. This is the code release for the paper:
  3. Prellberg J., Kramer O. (2019) Acute Lymphoblastic Leukemia Classification from Microscopic Images Using Convolutional Neural Networks. In: Gupta A., Gupta R. (eds) ISBI 2019 C-NMC Challenge: Classification in Cancer Cell Imaging. Lecture Notes in Bioengineering. Springer, Singapore
  4. ## Usage
  5. Use the script `main_manual.py` to train the model on the dataset. The expected training data layout is described below.
  6. Use the script `submission.py` to apply the trained model to the test data.
  7. ## Data Layout
  8. The training data during the challenge was released in multiple steps which is why the data layout is a little peculiar.
  9. ```
  10. data/fold_0/all/*.bmp
  11. data/fold_0/hem/*.bmp
  12. data/fold_1/...
  13. data/fold_2/...
  14. data/phase2/*.bmp
  15. data/phase3/*.bmp
  16. data/phase2.csv
  17. ```
  18. The `fold_0` to `fold_2` folders contain the training images with two subdirectories for the two classes each. The directories `phase2` and `phase3` are the preliminary test-set and test-set respectively and contain images numbered starting from `1.bmp`. The labels for the preliminary test-set are specified in `phase2.csv` which looks as follows:
  19. ```
  20. Patient_ID,new_names,labels
  21. UID_57_29_1_all.bmp,1.bmp,1
  22. UID_57_22_2_all.bmp,2.bmp,1
  23. UID_57_31_3_all.bmp,3.bmp,1
  24. UID_H49_35_1_hem.bmp,4.bmp,0
  25. ```