From 6185e61c19056ff667666205d7b15b1263b87353 Mon Sep 17 00:00:00 2001 From: Eduardo Pacheco <69953243+EduardoPach@users.noreply.github.com> Date: Sun, 23 Jul 2023 21:04:07 -0300 Subject: [PATCH] Update README.md Added more explanation to how access dataset from HuggingFace datasets --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8971386..eb74489 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,12 @@ Please refer to [get_started.md](docs/get_started.md#installation) for installat ## Dataset -Please download the file from [url](https://research.larc.smu.edu.sg/downloads/datarepo/FoodSeg103.zip) and unzip the data in ./data folder (./data/FoodSeg103/), with passwd: LARCdataset9947 +Please download the file from [url](https://research.larc.smu.edu.sg/downloads/datarepo/FoodSeg103.zip) and unzip the data in ./data folder (./data/FoodSeg103/), with passwd: LARCdataset9947 or use directly through HuggingFace [datasets](https://github.com/huggingface/datasets) with the following code: + +```python +from datasets import load_dataset +dataset = load_dataset("EduardoPacheco/FoodSeg103") +``` ## Leaderboard