IsmatS commited on
Commit
9d9506f
·
verified ·
1 Parent(s): 84ab9ea

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -14
README.md CHANGED
@@ -1,14 +1,34 @@
1
- ---
2
- title: Chest Cancer Detection
3
- emoji: 👀
4
- colorFrom: yellow
5
- colorTo: purple
6
- sdk: gradio
7
- sdk_version: 5.27.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- short_description: A deep learning project for detecting cancer in chest
12
- ---
13
-
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Chest CT Scan Cancer Detection
2
+
3
+ This application uses a deep learning model to detect cancer in chest CT scan images. The model is based on a DenseNet121 architecture and trained on the Chest CT-Scan Images dataset from Kaggle.
4
+
5
+ ## How to Use
6
+
7
+ 1. Upload a chest CT scan image using the interface
8
+ 2. Click "Analyze Image" to get results
9
+ 3. View the prediction (Normal or Cancer) and visualization
10
+
11
+ ## About the Model
12
+
13
+ - **Architecture**: Modified DenseNet121
14
+ - **Task**: Binary Classification (Normal vs. Cancer)
15
+ - **Input**: Chest CT scan images (resized to 256x256)
16
+ - **Performance**: ~90% accuracy on test set
17
+
18
+ ## Limitations
19
+
20
+ - The model works best with chest CT scans similar to those in the training data
21
+ - This is a research tool and should not be used for clinical diagnosis without professional medical oversight
22
+
23
+ ## Citation
24
+
25
+ If you use this model in your research, please cite:
26
+
27
+ @misc{samadov2025chestcancer,
28
+ author = {Ismat Samadov},
29
+ title = {Chest Cancer Detection Using Deep Learning},
30
+ year = {2025},
31
+ publisher = {GitHub},
32
+ journal = {GitHub repository},
33
+ howpublished = {\url{https://github.com/Ismat-Samadov/chest_cancer_detection}}
34
+ }