Abdelrhman-Elruby commited on
Commit
e25c307
1 Parent(s): 6906bae

modified: main.py

Browse files
Files changed (1) hide show
  1. main.py +25 -1
main.py CHANGED
@@ -122,7 +122,31 @@ def home_page():
122
 
123
 
124
  def About_page():
125
- st.error("Nothing Here yet")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
  def main():
128
  spr_sidebar()
 
122
 
123
 
124
  def About_page():
125
+ st.header('Development')
126
+ """
127
+ Check out the [repository](https://github.com/abdelrhmanelruby/Brain-MRI-Tumor-and-Alzheimer-Classification) for the source code and approaches
128
+ """
129
+ st.subheader('Data')
130
+ """
131
+ For the main model, we used [Brain Tumor MRI Images 44 Classes](https://www.kaggle.com/datasets/fernando2rad/brain-tumor-mri-images-44c) a collection of T1, contrast-enhanced T1, and T2 magnetic resonance images separated by brain tumor type. Contains a total of 4479 images and 44 classes.
132
+
133
+ We used this dataset to train our main CNN model and then tested it on different datasets. We used the same model and weights as the main model, with the only difference being the output layer. 
134
+ ### Testing datasets 
135
+ - [Brain Tumor MRI Images 44 Classes](https://www.kaggle.com/datasets/fernando2rad/brain-tumor-mri-images-44c) using only tumor types 4479 images and 15 classes
136
+ - [Brain Tumor MRI Images 17 Classes](https://www.kaggle.com/datasets/fernando2rad/brain-tumor-mri-images-17-classes) contains 4448 images and 17 classes
137
+ - [Brain Tumor Classification (MRI)](https://www.kaggle.com/datasets/sartajbhuvaji/brain-tumor-classification-mri) contains 3264 images and 4 classes
138
+ - [Brain MRI Images for Brain Tumor Detection](https://www.kaggle.com/datasets/navoneel/brain-mri-images-for-brain-tumor-detection)contains 253 images and 2 classes
139
+ - [Brain_Tumor_Detection_MRI](https://www.kaggle.com/datasets/abhranta/brain-tumor-detection-mri) contains 3060 images and 2 classes
140
+ - [Alzheimer MRI Preprocessed Dataset](https://www.kaggle.com/datasets/sachinkumar413/alzheimer-mri-dataset) contains 6400 images and 2 classes
141
+ """
142
+
143
+ """
144
+ ## Contributors
145
+ - AbdElRahman Elruby [Linkedin](https://www.linkedin.com/in/abdelrhmanelruby/) | [Github](https://github.com/abdelrhmanelruby)
146
+ - Marwa Shaaban AbdElhakeem [Linkedin](https://www.linkedin.com/in/marwa-shaaban-abd-elhakim/) | [Github](https://github.com/Marwa-Shaaban)
147
+ - Yara Yasser Farouk [Linkedin](https://www.linkedin.com/in/yara-yasser-64493b249/)
148
+ - Salma Mahmoud Fahim
149
+ """
150
 
151
  def main():
152
  spr_sidebar()