brianarbuckle commited on
Commit
b58cfc0
1 Parent(s): 5017991

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +155 -14
README.md CHANGED
@@ -1,32 +1,173 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
 
 
4
  - name: title
5
  dtype: string
6
  - name: ingredients
7
- sequence: (list of str) Ingredients.
8
  - name: directions
9
- sequence: (list of str) Instruction steps.
10
  - name: misc
11
- sequence: (list of str)
12
  - name: source
13
- dtype: >-
14
- string Ingredients source (directions, misc, and ner come from various
15
- sources conforming to a general style).
16
  - name: ner
17
- sequence: (list of str) NER food entities.
18
  splits:
19
  - name: train
20
  num_bytes: 301501
21
  num_examples: 875
22
  download_size: 96915
23
  dataset_size: 301501
24
- language:
25
- - en
26
- pretty_name: Cocktail Recipes
27
- size_categories:
28
- - n<1K
29
  ---
30
- # Dataset Card for "cocktail_recipes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
1
  ---
2
+ annotations_creators:
3
+ - found
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - n<1K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - text2text-generation
18
+ - text-generation
19
+ - fill-mask
20
+ - text-retrieval
21
+ - summarization
22
+ task_ids:
23
+ - document-retrieval
24
+ - entity-linking-retrieval
25
+ - explanation-generation
26
+ - language-modeling
27
+ - masked-language-modeling
28
+ pretty_name: Cocktail Recipes
29
  dataset_info:
30
  features:
31
+ - name: id
32
+ dtype: int32
33
  - name: title
34
  dtype: string
35
  - name: ingredients
36
+ sequence: string
37
  - name: directions
38
+ sequence: string
39
  - name: misc
40
+ sequence: string
41
  - name: source
42
+ dtype: string
 
 
43
  - name: ner
44
+ sequence: string
45
  splits:
46
  - name: train
47
  num_bytes: 301501
48
  num_examples: 875
49
  download_size: 96915
50
  dataset_size: 301501
 
 
 
 
 
51
  ---
52
+ # Dataset Card for Cocktail Recipes
53
+
54
+ ## Table of Contents
55
+ - [Dataset Description](#dataset-description)
56
+ - [Dataset Summary](#dataset-summary)
57
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
58
+ - [Languages](#languages)
59
+ - [Dataset Structure](#dataset-structure)
60
+ - [Data Instances](#data-instances)
61
+ - [Data Fields](#data-fields)
62
+ - [Data Splits](#data-splits)
63
+ - [Dataset Creation](#dataset-creation)
64
+ - [Curation Rationale](#curation-rationale)
65
+ - [Source Data](#source-data)
66
+ - [Annotations](#annotations)
67
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
68
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
69
+ - [Social Impact of Dataset](#social-impact-of-dataset)
70
+ - [Discussion of Biases](#discussion-of-biases)
71
+ - [Other Known Limitations](#other-known-limitations)
72
+
73
+
74
+ ## Dataset Description
75
+
76
+ ### Dataset Summary
77
+
78
+ Cocktail Recipes Dataset for Semi-Structured Text Generation.
79
+
80
+ ### Supported Tasks and Leaderboards
81
+
82
+ [More Information Needed]
83
+
84
+ ### Languages
85
+
86
+ The dataset is in English.
87
+
88
+ ## Dataset Structure
89
+
90
+ ### Data Instances
91
+
92
+ ```json
93
+ {"title": "Final Ward",
94
+ "ingredients": ["0.75 oz. Rye Whiskey",
95
+ "0.75 oz. Lemon Juice",
96
+ "0.75 oz. Maraschino Liqueur",
97
+ "0.75 oz. Green Chartreuse"],
98
+ "directions": ["shake on ice and strain"],
99
+ "misc":[],
100
+ "source": "Death & Co.",
101
+ "ner":["whiskey",
102
+ "chartreuse",
103
+ "maraschino liqueur"]}
104
+ ```
105
+
106
+ ### Data Fields
107
+
108
+ - `title` (`str`): Title of the recipe.
109
+ - `ingredients` (`list` of `str`): Ingredients.
110
+ - `directions` (`list` of `str`): Instruction steps.
111
+ - `source` (`str`): Origin of each recipe
112
+ - `ner` (`list` of `str`): NER entities.
113
+
114
+ ### Data Splits
115
+
116
+ The dataset contains a single `train` split.
117
+
118
+ ## Dataset Creation
119
+
120
+ [More Information Needed]
121
+ ### Curation Rationale
122
+
123
+ [More Information Needed]
124
+
125
+ ### Source Data
126
+
127
+ [More Information Needed]
128
+
129
+ #### Initial Data Collection and Normalization
130
+
131
+ [More Information Needed]
132
+
133
+ #### Who are the source language producers?
134
+
135
+ [More Information Needed]
136
+
137
+ ### Annotations
138
+
139
+ [More Information Needed]
140
+
141
+ #### Annotation process
142
+
143
+ [More Information Needed]
144
+
145
+ #### Who are the annotators?
146
+
147
+ [More Information Needed]
148
+
149
+ ### Personal and Sensitive Information
150
+
151
+ [More Information Needed]
152
+
153
+ ## Considerations for Using the Data
154
+
155
+ ### Social Impact of Dataset
156
+
157
+ [More Information Needed]
158
+
159
+ ### Discussion of Biases
160
+
161
+ [More Information Needed]
162
+
163
+ ### Other Known Limitations
164
+
165
+ [More Information Needed]
166
+
167
+ ## Additional Information
168
+
169
+ ### Dataset Curators
170
+
171
+ [More Information Needed]
172
+
173