Skip to content

Commit b4ddfd8

Browse files
authored
Merge pull request #1669 from recodehive/sanjay-kv-patch-2
Update ReadMe.md
2 parents 7ee70b0 + 589b481 commit b4ddfd8

File tree

1 file changed

+39
-6
lines changed
  • Detection Models/Blood Cell Cancer Detection using CNN and EfficientNetB3

1 file changed

+39
-6
lines changed

Detection Models/Blood Cell Cancer Detection using CNN and EfficientNetB3/ReadMe.md

Lines changed: 39 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
12
# Blood Cell Cancer Classification using CNN and EfficientNetB3
23

3-
This project aims to classify blood cell images to detect cancerous cells using Convolutional Neural Networks (CNN) and EfficientNetB3 architecture.
4+
![License](https://img.shields.io/badge/license-MIT-blue.svg)
5+
![Status](https://img.shields.io/badge/status-active-success.svg)
6+
![Contributions](https://img.shields.io/badge/contributions-welcome-brightgreen.svg)
47

58
## Table of Contents
69
- [Overview](#overview)
710
- [Dataset](#dataset)
811
- [Installation](#installation)
12+
- [Getting Started](#getting-started)
913
- [Notebook Structure](#notebook-structure)
1014
- [Import Necessary Libraries](#import-necessary-libraries)
1115
- [Reading the Data](#reading-the-data)
@@ -17,15 +21,18 @@ This project aims to classify blood cell images to detect cancerous cells using
1721
- [Using EfficientNetB3](#using-efficientnetb3)
1822
- [Conclusion](#conclusion)
1923
- [Results](#results)
24+
- [Future Work](#future-work)
25+
- [Authors](#authors)
26+
- [License](#license)
2027

2128
## 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.
2330

2431
## 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.
2633

2734
## Installation
28-
To run the notebook, ensure you have the following libraries installed:
35+
Ensure you have the following libraries installed:
2936
- TensorFlow
3037
- Keras
3138
- NumPy
@@ -35,11 +42,22 @@ To run the notebook, ensure you have the following libraries installed:
3542
- OpenCV
3643
- PIL
3744

38-
You can install the required libraries using:
45+
Install the required libraries using:
3946
```bash
4047
pip install tensorflow keras numpy pandas matplotlib seaborn opencv-python pillow
4148
```
4249

50+
## Getting Started
51+
1. Clone the repository:
52+
```bash
53+
git clone https://github.com/recodehive/machine-learning-repos.git
54+
```
55+
2. Navigate to the project directory:
56+
```bash
57+
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+
4361
## Notebook Structure
4462

4563
### Import Necessary Libraries
@@ -70,4 +88,19 @@ EfficientNetB3 architecture is used to enhance the model's accuracy. The pre-tra
7088
Summary of the findings and results, including insights on model performance and potential improvements.
7189
7290
## 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

Comments
 (0)