/dvc_cat_dog_classifier

It uses DVC for CI/CD and classifies cats and dogs based on images

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

DVC_cat_dog_classifier

download data --> source

commands -

create a new env

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

activate new env

source activate ./env

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 .