Diff of /README.md [000000] .. [97352b]

Switch to unified view

a b/README.md
1
# Blood Cancer Detection using Deep Learning
2
3
This project aims to develop a deep learning model for blood cancer detection using Convolutional Neural Networks (CNNs). The model achieves a high accuracy of over 99% in identifying various types of normal blood cells.
4
5
## Dataset
6
7
The dataset used for training consists of 17,092 images of normal blood cells. These images were collected from individuals without any hematologic or oncologic diseases, ensuring a diverse and representative dataset for training the model.
8
Link : https://www.kaggle.com/datasets/mahdinavaei/blood-cancer
9
10
## Model Architecture
11
12
The deep learning model is built using CNNs, which have proven to be effective in image classification tasks. The architecture of the model includes convolutional layers for feature extraction followed by fully connected layers for classification.
13
14
## Training Process
15
16
The model was trained on the dataset using a standard training-validation split. The training process involved optimizing the model's parameters to minimize the loss function, thereby improving its accuracy in blood cancer detection.
17
18
## Results
19
20
The trained model achieved an impressive accuracy of over 99% on the validation set, demonstrating its effectiveness in detecting various types of normal blood cells.
21
22
## Usage
23
24
To use the trained model for blood cancer detection, simply input an image of a blood cell into the model, and it will predict the cell type with high accuracy.
25
26
## Dependencies
27
28
- Python 3.x
29
- TensorFlow
30
- Keras
31
- NumPy
32
- Matplotlib