gitextract__fzn9_a9/ ├── .gitignore ├── README.md ├── astnode.py ├── code_gen.py ├── components.py ├── config.py ├── dataset.py ├── decoder.py ├── evaluation.py ├── interactive_mode.py ├── lang/ │ ├── __init__.py │ ├── grammar.py │ ├── ifttt/ │ │ ├── __init__.py │ │ ├── grammar.py │ │ ├── ifttt_dataset.py │ │ └── parse.py │ ├── py/ │ │ ├── __init__.py │ │ ├── grammar.py │ │ ├── parse.py │ │ ├── py_dataset.py │ │ ├── seq2tree_exp.py │ │ └── unaryclosure.py │ ├── type_system.py │ └── util.py ├── learner.py ├── main.py ├── model.py ├── nn/ │ ├── __init__.py │ ├── activations.py │ ├── initializations.py │ ├── layers/ │ │ ├── __init__.py │ │ ├── convolution.py │ │ ├── core.py │ │ ├── embeddings.py │ │ └── recurrent.py │ ├── objectives.py │ ├── optimizers.py │ └── utils/ │ ├── __init__.py │ ├── config_factory.py │ ├── generic_utils.py │ ├── io_utils.py │ ├── np_utils.py │ ├── test_utils.py │ └── theano_utils.py ├── parse.py ├── parse_hiro.py ├── run_interactive.sh ├── run_interactive_singlefile.sh ├── run_trained_model.sh ├── train.sh └── util.py