-
-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #436 from the-silent-geek/Bone_marrow_cell_classif…
…ication Bone Marrow Cells Classification using Deep Learning
- Loading branch information
Showing
9 changed files
with
1,148 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
Bone Marrow Cells Classification using Deep Learning/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# <h1 align = "center"> Bone marrow cell classification</h1> | ||
## Aim of the project: | ||
### The project focuses on classification of different types of cells using various Deep Learning Algorithms. | ||
|
||
### Libraries and Frameworks used: | ||
1. Pandas | ||
2. Numpy | ||
3. Matplotlib | ||
4. Seaborn | ||
5. Tensorflow | ||
6. Keras | ||
7. sklearn | ||
|
||
|
||
## Deep Learning Algorithms used: | ||
1. Vgg16 | ||
2. EfficientNetB5 | ||
3. DenseNet | ||
4. MobileNet | ||
|
||
## Accuracy and training time comparison of all the Deep Learning Algorithms | ||
| | Accuracy | | ||
|----------------|---------------| | ||
| Vgg16 | 90% | | ||
| EfficientNetB5 | 92% | | ||
| DenseNet | 81% | | ||
| MobileNet | 86% | | ||
|
||
# Representation of types of cells | ||
![EDA](https://github.com/the-silent-geek/DL-Simplified/blob/64d196ea11684a3a2df59b58b912244d9cc8d3fb/Bone%20marrow%20cell%20classification/images/EDA.png) | ||
|
||
# Accuracy plots of all models | ||
|
||
## Vgg16 | ||
![vgg16](https://github.com/the-silent-geek/DL-Simplified/blob/64d196ea11684a3a2df59b58b912244d9cc8d3fb/Bone%20marrow%20cell%20classification/images/VGG16.png) | ||
|
||
## EfficientNetB5 | ||
![EfficientNetB5](https://github.com/the-silent-geek/DL-Simplified/blob/64d196ea11684a3a2df59b58b912244d9cc8d3fb/Bone%20marrow%20cell%20classification/images/efficient%20net%20b5.png) | ||
|
||
## DenseNet | ||
![densenet](https://github.com/the-silent-geek/DL-Simplified/blob/64d196ea11684a3a2df59b58b912244d9cc8d3fb/Bone%20marrow%20cell%20classification/images/DenseNet.png) | ||
|
||
## MobileNet | ||
![mobilenet](https://github.com/the-silent-geek/DL-Simplified/blob/64d196ea11684a3a2df59b58b912244d9cc8d3fb/Bone%20marrow%20cell%20classification/images/mobileNet.png) | ||
|
||
# Conclusion | ||
EfficientNetB5 model performs better comparative to other models used on the above dataset. |
10 changes: 10 additions & 0 deletions
10
Bone Marrow Cells Classification using Deep Learning/dataset/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Dataset | ||
|
||
The dataset used in this project is take from the Kaggle website. | ||
<br> | ||
<b>Dataset Link:- https://www.kaggle.com/datasets/andrewmvd/bone-marrow-cell-classification/data</b> | ||
<br> | ||
|
||
<br> | ||
The dataset contains a collection of over 170,000 de-identified, expert-annotated cells from the bone marrow smears of 945 patients stained using the May-Grünwald-Giemsa/Pappenheim stain. | ||
<br> |
Binary file added
BIN
+96.2 KB
Bone Marrow Cells Classification using Deep Learning/images/DenseNet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+64.5 KB
Bone Marrow Cells Classification using Deep Learning/images/VGG16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+67.4 KB
Bone Marrow Cells Classification using Deep Learning/images/efficient net b5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+69.3 KB
Bone Marrow Cells Classification using Deep Learning/images/mobileNet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,084 changes: 1,084 additions & 0 deletions
1,084
Bone Marrow Cells Classification using Deep Learning/model/model.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
Bone Marrow Cells Classification using Deep Learning/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Pandas | ||
Numpy | ||
Matplotlib | ||
Seaborn | ||
Tensorflow | ||
Keras | ||
sklearn |