Fraser-Greenlee
commited on
Commit
·
a3a8e6c
1
Parent(s):
32cdebd
basics
Browse files- .gitignore +1 -0
- README.md +3 -0
- program_synthesis.py +0 -1
.gitignore
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
*.pyc
|
2 |
__pycache__
|
|
|
|
1 |
*.pyc
|
2 |
__pycache__
|
3 |
+
.DS_Store
|
README.md
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
# Program Synthesis Data
|
2 |
+
|
3 |
+
Generated program synthesis datasets used to train [dreamcoder](https://github.com/ellisk42/ec).
|
program_synthesis.py
CHANGED
@@ -68,7 +68,6 @@ class ProgramSynthesis(datasets.GeneratorBasedBuilder):
|
|
68 |
DEFAULT_CONFIG_NAME = "all"
|
69 |
|
70 |
def _info(self):
|
71 |
-
# self.config.name shows config used
|
72 |
return datasets.DatasetInfo(
|
73 |
description=_DESCRIPTION,
|
74 |
features=_FEATURES,
|
|
|
68 |
DEFAULT_CONFIG_NAME = "all"
|
69 |
|
70 |
def _info(self):
|
|
|
71 |
return datasets.DatasetInfo(
|
72 |
description=_DESCRIPTION,
|
73 |
features=_FEATURES,
|