From f2c374f74b2ed808e57b368cf691d9846457e5a0 Mon Sep 17 00:00:00 2001 From: bit-scientist Date: Fri, 1 Sep 2023 19:43:39 +0900 Subject: [PATCH 1/3] Update README.md better user experience for dataset downloading --- README.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6cf1388..5783669 100644 --- a/README.md +++ b/README.md @@ -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 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 +``` +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 From 2a572f8ad45565bf6579c0a441877d8c2aeb0813 Mon Sep 17 00:00:00 2001 From: bit-scientist Date: Fri, 1 Sep 2023 19:44:59 +0900 Subject: [PATCH 2/3] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5783669..afda03e 100644 --- a/README.md +++ b/README.md @@ -141,15 +141,15 @@ a) download the whole dataset ``` 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 +./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 +./scripts/download_datasets.sh -l ``` 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/ +./scripts/download_datasets.sh -f coco -l /mnt/projects/datasets ``` ### Formats From 8b8af869dd6b9fdaba75f83263303661ee6bebd0 Mon Sep 17 00:00:00 2001 From: bit-scientist Date: Fri, 1 Sep 2023 19:45:51 +0900 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index afda03e..2fc4911 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ c) download the dataset to a specified location using `-l` flag ```bash ./scripts/download_datasets.sh -l ``` -For instance: If I want to download the rf100 dataset with `coco` format into my `/mnt/projects/datasets` path, then I will do: +**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 ```