Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -85,13 +85,13 @@ Each instance is prompted with all possible unbalanced 4-shot distributions.
|
|
85 |
We also increase task complexity by introducing an additional neutral example between the first and last two examples.
|
86 |
|
87 |
**Dataset Fields:**
|
88 |
-
- `idx`: original sentence id, in the format
|
89 |
- `sentence`: test sentence.
|
90 |
- `label`: sentiment of the test sentence, either "negative" (`0`) or "positive" (`1`).
|
91 |
- `dist`: few-shot distribution (`0000`, `1111`, `0001`, `0010`, `0100, `1000`, `1110`, `1101`, `1011, `0111`).
|
92 |
-
- `shot
|
93 |
-
- `shot
|
94 |
-
- `shot
|
95 |
- `few_shot_string`: string with all 4 shots the sentence is prompted with.
|
96 |
- `few_shot_hard_string`: string with the same 4 shots and an additional neutral example between the first and last two to increase task complexity.
|
97 |
|
|
|
85 |
We also increase task complexity by introducing an additional neutral example between the first and last two examples.
|
86 |
|
87 |
**Dataset Fields:**
|
88 |
+
- `idx`: original sentence id, in the format `<original_partition>_<original_id>`.
|
89 |
- `sentence`: test sentence.
|
90 |
- `label`: sentiment of the test sentence, either "negative" (`0`) or "positive" (`1`).
|
91 |
- `dist`: few-shot distribution (`0000`, `1111`, `0001`, `0010`, `0100, `1000`, `1110`, `1101`, `1011, `0111`).
|
92 |
+
- `shot<n>_idx`: original id of the example sentence, in the format `<original_partition>_<original_id>`.
|
93 |
+
- `shot<n>_sent`: example sentence.
|
94 |
+
- `shot<n>_label`: sentiment of the example sentence.
|
95 |
- `few_shot_string`: string with all 4 shots the sentence is prompted with.
|
96 |
- `few_shot_hard_string`: string with the same 4 shots and an additional neutral example between the first and last two to increase task complexity.
|
97 |
|