Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

better downloading experience fo novice users #55

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,26 @@ pip install roboflow

Then,

##### give relevant permissions
```bash
chmod 770 ./scripts/download_datasets.sh
```
##### You can download the dataset in one of the following options:
a) download the whole dataset
```bash
./scripts/download_datasets.sh
./scripts/download_datasets.sh -f yolov5 $ change format
./scripts/download_datasets.sh -l <path_to_my_location> change download location
```
b) download the dataset in either `yolov5`/`yolov7` format or `coco` format:
```bash
./scripts/download_datasets.sh -f yolov5 # change yolov5 to coco for coco format
```
c) download the dataset to a specified location using `-l` flag
```bash
./scripts/download_datasets.sh -l <your_desired_location>
```
**For instance:** If I want to download the rf100 dataset with `coco` format into my `/mnt/projects/datasets` path, then I will do:
```bash
./scripts/download_datasets.sh -f coco -l /mnt/projects/datasets
```

### Formats
Expand Down