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 |
![](https://huggingface.co/Fraser/program-synthesis/resolve/main/img.png)
|
|
|
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 |
![](https://huggingface.co/Fraser/program-synthesis/resolve/main/img.png)
|