From 8ff1dd2ca0dd80b62e06d3f20f6e81765a320adb Mon Sep 17 00:00:00 2001 From: Yaman Date: Wed, 3 May 2023 13:53:32 +0200 Subject: [PATCH] Update README --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c223c17..f1364a3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # chair-training ## Prerequisite -You will need to have conda installed on the system. Miniconda should suffice +You will need to have `conda` installed on the system. Miniconda should suffice [install miniconda](https://docs.conda.io/en/latest/miniconda.html) ### Clone the repo @@ -11,7 +11,7 @@ cd chair-training ``` ### Create a new conda environment ```bash -conda env create +conda env create --file environment.yml ``` This will look for the environment.yml file and create a new environment called chair-training. To activate this new environment, run the following command: ```bash @@ -19,7 +19,15 @@ conda activate chair-training ``` ## Datasets -https://universe.roboflow.com/yolo-6y5cv/chair-scratches/dataset/2 +The datasets used for training are available on Roboflow. The datasets are available in the following links: +- https://universe.roboflow.com/yolo-6y5cv/chair-scratches/dataset ## Environment Conda was used to setup a local testing environment + +Update the environment.yml file with the new dependencies and run the following command to update the environment: +```bash +conda env update --file environment.yml --prune +``` + +- https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#updating-an-environment