/Medical-Image-Processing

The Covid Detection application

Primary LanguageJupyter NotebookMIT LicenseMIT

Medical-Image-Processing

The Covid Detection application

Installation Guide

Download Conda -> source

commands -

create a new env

conda create --prefix ./env python=3.7 -y

activate new env

conda activate ./env

install Packages

pip install -r requirements.txt

init DVC

git init
dvc init

create empty files -

mkdir -p src/utils config
touch src/__init__.py src/utils/__init__.py param.yaml dvc.yaml config/config.yaml src/stage_01_load_save.py src/utils/all_utils.py setup.py .gitignore

install src

pip install -e .