This project is an end-to-end deep learning application that uses the VGG16 model for transfer learning to classify kidney CT scan images. The dataset used is sourced from Kaggle. The project also incorporates MLflow and DagsHub for experiment tracking, and DVC for data versioning and pipeline management.
- Dagshub URL : https://dagshub.com/Sidd-77/kidney-disease-classification
- Mlflow URL: https://dagshub.com/Sidd-77/kidney-disease-classification.mlflow
-
Deep Learning: TensorFlow, Keras
-
Transfer Learning: VGG16 model
-
Experiment Tracking: MLflow, DagsHub
-
Data Versioning: DVC, GIT
-
Containerization: Docker
-
Dataset: Kaggle CT Kidney Dataset
- Clone the repository:
git clone https://github.com/Sidd-77/kidney-disease-classification.git
- Navigate to the project directory:
cd kidney-disease-classification
- Install the required dependencies:
pip install -r requirements.txt
- Run DVC pipeline:
dvc repro
- To train the model, run:
python main.py
- To start the Streamlit application, run:
streamlit run application.py
A Dockerfile is provided if you wish to build a Docker image.
- Build the Docker image:
docker build -t <image-name> .
- Run the Docker container:
docker run -p 8501:8501 <image-name>
The application will be accessible at http://localhost:8501
.