update the read me with example to load the dataset
Browse files- L2T-NeurIPS-2023.py +1 -0
- README.md +13 -9
L2T-NeurIPS-2023.py
CHANGED
@@ -54,6 +54,7 @@ reviews = ['Deliciously fragrant xxx',
|
|
54 |
|
55 |
|
56 |
_REPO = f"https://huggingface.co/datasets/{USERNAME}/{REPO_NAME}/resolve/main/"
|
|
|
57 |
if LOCAL:
|
58 |
_REPO = f"/Users/alka/Devel/L2T-NeurIPS-2023"
|
59 |
|
|
|
54 |
|
55 |
|
56 |
_REPO = f"https://huggingface.co/datasets/{USERNAME}/{REPO_NAME}/resolve/main/"
|
57 |
+
_REPO = "https://huggingface.co/datasets/Dakhoo/L2T-NeurIPS-2023/resolve/main/"
|
58 |
if LOCAL:
|
59 |
_REPO = f"/Users/alka/Devel/L2T-NeurIPS-2023"
|
60 |
|
README.md
CHANGED
@@ -26,9 +26,19 @@ We obtained fine-grained flavor annotations on a subset by conducting a wine-tas
|
|
26 |
with 256 participants who were asked to rank wines based on their similarity in flavor,
|
27 |
resulting in more than 5k pairwise flavor distances.
|
28 |
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
English
|
32 |
|
33 |
## Dataset Structure
|
34 |
|
@@ -72,13 +82,7 @@ The dataset contains the file metadata.zip, consisting of the files participants
|
|
72 |
|
73 |
## Dataset Creation
|
74 |
|
75 |
-
|
76 |
-
|
77 |
-
1) Unzip all the chunk_*.zip files
|
78 |
-
2) Copy the script create_all_images_dataset.sh to the output_images/ directory
|
79 |
-
3) Execute chmod +x create_all_images_dataset.sh
|
80 |
-
4) Execute ./create_all_images_dataset.sh
|
81 |
-
|
82 |
|
83 |
## Additional Information
|
84 |
|
|
|
26 |
with 256 participants who were asked to rank wines based on their similarity in flavor,
|
27 |
resulting in more than 5k pairwise flavor distances.
|
28 |
|
29 |
+
## Hugging Face Datasets
|
30 |
+
|
31 |
+
use the following command to load the dataset in Hugging Face Datasets library:
|
32 |
+
|
33 |
+
```python
|
34 |
+
dataset = load_dataset('Dakhoo/L2T-NeurIPS-2023', 'vintages')
|
35 |
+
dataset = load_dataset('Dakhoo/L2T-NeurIPS-2023', 'napping_participants')
|
36 |
+
dataset = load_dataset('Dakhoo/L2T-NeurIPS-2023', 'wt_session')
|
37 |
+
dataset = load_dataset('Dakhoo/L2T-NeurIPS-2023', 'small')
|
38 |
+
dataset = load_dataset('Dakhoo/L2T-NeurIPS-2023', 'all')
|
39 |
+
```
|
40 |
+
|
41 |
|
|
|
42 |
|
43 |
## Dataset Structure
|
44 |
|
|
|
82 |
|
83 |
## Dataset Creation
|
84 |
|
85 |
+
Follow the instructions in this [link](https://thoranna.github.io/learning_to_taste/) to create the dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
## Additional Information
|
88 |
|