A deep learning model for detecting brain tumors from MRI images using Convolutional Neural Networks (CNNs).
This repository contains a trained deep learning model for detecting brain tumors from medical imaging data. The model is built using [TensorFlow/Keras] and saved in .h5 format (BTM.h5).
BTM.h5β The pre-trained brain tumor detection model.
This model was developed as part of a research/academic project to classify brain MRI images into tumor vs. no-tumor categories. It is trained on a labeled dataset of MRI scans using a Convolutional Neural Network (CNN).
- Input Layer: 128x128 grayscale MRI images
- Conv2D β ReLU β MaxPooling
- Dropout for regularization
- Fully Connected Dense Layers
- Sigmoid / Softmax activation for binary/multi-class classification
The model was trained on a publicly available dataset of brain MRI images (e.g., from Kaggle) labeled with tumor presence. All images were preprocessed (resized, normalized) before training.