Commit
·
b2734c6
1
Parent(s):
afd897c
Update README.md
Browse files
README.md
CHANGED
@@ -21,6 +21,7 @@ size_categories:
|
|
21 |
License: Apache-2.0. Contains JSONL. Use this for Reward Models.
|
22 |
|
23 |
# Solved tasks:
|
|
|
24 |
- Count Letters;
|
25 |
- Write Backwards;
|
26 |
- Write Character on a Position;
|
@@ -30,4 +31,29 @@ License: Apache-2.0. Contains JSONL. Use this for Reward Models.
|
|
30 |
- Write Numbering;
|
31 |
- Connect Characters;
|
32 |
- Write a Word from Characters;
|
33 |
-
- Count Syllables;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
License: Apache-2.0. Contains JSONL. Use this for Reward Models.
|
22 |
|
23 |
# Solved tasks:
|
24 |
+
|
25 |
- Count Letters;
|
26 |
- Write Backwards;
|
27 |
- Write Character on a Position;
|
|
|
31 |
- Write Numbering;
|
32 |
- Connect Characters;
|
33 |
- Write a Word from Characters;
|
34 |
+
- Count Syllables;
|
35 |
+
|
36 |
+
# Example:
|
37 |
+
|
38 |
+
```json
|
39 |
+
{
|
40 |
+
"message_tree_id": "00000000-0000-0000-0000-000000000004",
|
41 |
+
"tree_state": "ready_for_export",
|
42 |
+
"prompt": {
|
43 |
+
"message_id": "00000000-0000-0000-0000-000000000004",
|
44 |
+
"text": "Count the number of letters in the word «detailed»",
|
45 |
+
"role": "prompter",
|
46 |
+
"lang": "en",
|
47 |
+
"replies": [
|
48 |
+
{ "message_id": "00000000-0000-0000-0000-000000000005",
|
49 |
+
"text": "8", "role": "assistant", "lang": "en",
|
50 |
+
"meta": {"rank": 1}, "replies": []},
|
51 |
+
{ "message_id": "00000000-0000-0000-0000-000000000006",
|
52 |
+
"text": "7", "role": "assistant", "lang": "en",
|
53 |
+
"meta": {"rank": 0}, "replies": []},
|
54 |
+
{"message_id": "00000000-0000-0000-0000-000000000007",
|
55 |
+
"text": "7 or 9", "role": "assistant", "lang": "en",
|
56 |
+
"meta": {"rank": 0}, "replies": []}]
|
57 |
+
}
|
58 |
+
}
|
59 |
+
```
|