A repo to try out some ML concepts
To recreate the conda environment from the environment.yml file, use the following command:
conda env create -f environment.ymlThis will create a new conda environment with the same name and packages as specified in the environment.yml file.
Activate the environment with
conda activate ml_playgroundThe package pre-commit is already contained in the conda environment. Otherwise run pip install pre-commit first.
Install pre-commit with
pre-commit installTo run pre-commit on all files, run
pre-commit run --all-files