pavankm96 commited on
Commit
1287912
1 Parent(s): fef9f79

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -6
README.md CHANGED
@@ -3,16 +3,31 @@ language: en
3
  tags:
4
  - image-classification
5
  - brain-tumor-detection
 
 
 
6
  ---
7
 
8
  # Brain Tumor Detection Model
9
 
10
- This model predicts whether a brain tumor is present based on MRI images.
11
 
12
- ## Model Details
13
- - **Model Type**: Convolutional Neural Network
14
- - **Input Size**: 224x224
15
- - **Training Data**: [Link to dataset or description]
 
 
 
 
 
 
16
 
17
  ## Usage
18
- To use this model for predictions, send an image to the inference API.
 
 
 
 
 
 
 
3
  tags:
4
  - image-classification
5
  - brain-tumor-detection
6
+ - medical-imaging
7
+ - deep-learning
8
+ - keras
9
  ---
10
 
11
  # Brain Tumor Detection Model
12
 
13
+ This model predicts the presence of brain tumors based on medical imaging data (e.g., MRI scans). It is designed to assist healthcare professionals in identifying tumors in brain scans, enhancing diagnostic capabilities.
14
 
15
+ ## Model Description
16
+
17
+ - **Architecture**: Convolutional Neural Network (CNN) built using TensorFlow/Keras.
18
+ - **Input Shape**: The model expects input images of shape `(224, 224, 3)`, which corresponds to resized RGB images.
19
+ - **Output**: The model outputs a probability distribution over two classes: `malignant` and `non-malignant`.
20
+
21
+ ## Training Data
22
+
23
+ - The model was trained on a dataset of brain MRI images. The dataset includes both images with and without tumors.
24
+ - Data Augmentation techniques were applied during training to improve model generalization.
25
 
26
  ## Usage
27
+
28
+ ### Installation
29
+
30
+ To use this model, ensure you have the required libraries installed:
31
+
32
+ ```bash
33
+ pip install tensorflow fastapi numpy pillow