Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
yamanadamnor committed May 3, 2023
1 parent d3991b7 commit 8ff1dd2
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -11,15 +11,23 @@ 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
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

0 comments on commit 8ff1dd2

Please sign in to comment.