AnonymousSub
commited on
Commit
·
b4b871e
1
Parent(s):
7591b67
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
annotations_creators: []
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
language_creators: []
|
6 |
+
license: []
|
7 |
+
multilinguality:
|
8 |
+
- monolingual
|
9 |
+
pretty_name: recipe RL roberta base
|
10 |
+
size_categories: []
|
11 |
+
source_datasets: []
|
12 |
+
tags: []
|
13 |
+
task_categories: []
|
14 |
+
task_ids: []
|
15 |
+
---
|
16 |
+
|
17 |
+
# Dataset Description
|
18 |
+
|
19 |
+
## Structure
|
20 |
+
|
21 |
+
- Consists of 5 fields
|
22 |
+
- Each row corresponds to a policy - sequence of actions, given an initial `<START>` state, and corresponding rewards at each step.
|
23 |
+
|
24 |
+
## Fields
|
25 |
+
|
26 |
+
`steps`, `step_attn_masks`, `rewards`, `actions`, `dones`
|
27 |
+
|
28 |
+
## Field descriptions
|
29 |
+
|
30 |
+
- `steps` (List of lists of `Int`s) - tokenized step tokens of all the steps in the policy sequence (here we use the `roberta-base` tokenizer, as `roberta-base` would be used to encode each step of a recipe)
|
31 |
+
- `step_attn_masks` (List of lists of `Int`s) - Attention masks corresponding to `steps`
|
32 |
+
- `rewards` (List of `Float`s) - Sequence of rewards (normalized b/w 0 and 1) assigned per step.
|
33 |
+
- `actions` (List of lists of `Int`s) - Sequence of actions (one-hot encoded, as the action space is discrete). There are `33` different actions possible (we consider the maximum number of steps per recipe = `16`, so the action can vary from `-16` to `+16`; The class label is got by adding 16 to the actual action value)
|
34 |
+
- `dones` (List of `Bool`) - Sequence of flags, conveying if the work is completed when that step is reached, or not.
|
35 |
+
|
36 |
+
## Dataset Size
|
37 |
+
|
38 |
+
- Number of rows = `2255673`
|
39 |
+
- Maximum number of steps per row = `16`
|