Fraser-Greenlee
commited on
Commit
·
e7bd290
1
Parent(s):
62ef74b
README.md
CHANGED
|
@@ -14,4 +14,15 @@ Generated program synthesis datasets used to train [dreamcoder](https://github.c
|
|
| 14 |
|
| 15 |
Currently just supports text & list data.
|
| 16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |

|
|
|
|
| 14 |
|
| 15 |
Currently just supports text & list data.
|
| 16 |
|
| 17 |
+
```python
|
| 18 |
+
_FEATURES = datasets.Features(
|
| 19 |
+
{
|
| 20 |
+
"description": datasets.Value("string"),
|
| 21 |
+
"input": datasets.Value("string"),
|
| 22 |
+
"output": datasets.Value("string"),
|
| 23 |
+
"types": datasets.Value("string")
|
| 24 |
+
}
|
| 25 |
+
)
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |

|