You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -17,15 +21,18 @@ This project aims to classify blood cell images to detect cancerous cells using
17
21
-[Using EfficientNetB3](#using-efficientnetb3)
18
22
-[Conclusion](#conclusion)
19
23
-[Results](#results)
24
+
-[Future Work](#future-work)
25
+
-[Authors](#authors)
26
+
-[License](#license)
20
27
21
28
## Overview
22
-
This project utilizes deep learning techniques to classify blood cell images into cancerous and non-cancerous categories. Initially, a basic CNN model is implemented, followed by an enhanced model using EfficientNetB3 architecture for improved accuracy.
29
+
This project aims to classify blood cell images to detect cancerous cells using deep learning techniques, specifically Convolutional Neural Networks (CNN) and EfficientNetB3 architecture. The goal is to develop a robust model that can accurately differentiate between cancerous and non-cancerous blood cells.
23
30
24
31
## Dataset
25
-
The dataset used in this project is sourced from [Kaggle](https://www.kaggle.com/) and contains images of various blood cell types. The dataset is organized into folders for each cell type.
32
+
The dataset used in this project is sourced from [Kaggle](https://www.kaggle.com/), containing images of various blood cell types. The dataset is organized into folders for each cell type.
26
33
27
34
## Installation
28
-
To run the notebook, ensure you have the following libraries installed:
35
+
Ensure you have the following libraries installed:
29
36
- TensorFlow
30
37
- Keras
31
38
- NumPy
@@ -35,11 +42,22 @@ To run the notebook, ensure you have the following libraries installed:
35
42
- OpenCV
36
43
- PIL
37
44
38
-
You can install the required libraries using:
45
+
Install the required libraries using:
39
46
```bash
40
47
pip install tensorflow keras numpy pandas matplotlib seaborn opencv-python pillow
cd machine-learning-repos/Detection Models/Blood Cell Cancer Detection using CNN and EfficientNetB3
58
+
```
59
+
3. Ensure you have the required libraries installed as mentioned in the [Installation](#installation) section.
60
+
43
61
## Notebook Structure
44
62
45
63
### Import Necessary Libraries
@@ -70,4 +88,19 @@ EfficientNetB3 architecture is used to enhance the model's accuracy. The pre-tra
70
88
Summary of the findings and results, including insights on model performance and potential improvements.
71
89
72
90
## Results
73
-
The project demonstrates the capability of CNN and EfficientNetB3 in classifying blood cell images with high accuracy.
91
+
The project demonstrates the capability of CNN and EfficientNetB3 in classifying blood cell images with high accuracy. The final model achieved an accuracy of XX% on the validation set.
92
+
93
+
## Future Work
94
+
- Explore the use of other pre-trained models.
95
+
- Implement more advanced data augmentation techniques.
96
+
- Deploy the model as a web application for real-time predictions.
97
+
98
+
## Authors
99
+
- [Sanjay KV](https://github.com/sanjay-kv)
100
+
101
+
## License
102
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
103
+
104
+
---
105
+
106
+
You can copy and paste this improved version into your ReadMe.md file.
0 commit comments