├── LICENSE ├── README.md ├── combine_sent_scores.py ├── compile_results.py ├── data_gen ├── base-grammar.gr ├── gen_data.sh ├── make_splits.py ├── permute_sentences.py └── sample_sentences.py ├── get_sentence_scores.py ├── results_analysis ├── mixed_model.py └── permutation_test.py ├── run_all_jobs.py ├── train_lm_lstm.sh └── train_lm_transformer.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/README.md -------------------------------------------------------------------------------- /combine_sent_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/combine_sent_scores.py -------------------------------------------------------------------------------- /compile_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/compile_results.py -------------------------------------------------------------------------------- /data_gen/base-grammar.gr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/data_gen/base-grammar.gr -------------------------------------------------------------------------------- /data_gen/gen_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/data_gen/gen_data.sh -------------------------------------------------------------------------------- /data_gen/make_splits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/data_gen/make_splits.py -------------------------------------------------------------------------------- /data_gen/permute_sentences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/data_gen/permute_sentences.py -------------------------------------------------------------------------------- /data_gen/sample_sentences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/data_gen/sample_sentences.py -------------------------------------------------------------------------------- /get_sentence_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/get_sentence_scores.py -------------------------------------------------------------------------------- /results_analysis/mixed_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/results_analysis/mixed_model.py -------------------------------------------------------------------------------- /results_analysis/permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/results_analysis/permutation_test.py -------------------------------------------------------------------------------- /run_all_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/run_all_jobs.py -------------------------------------------------------------------------------- /train_lm_lstm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/train_lm_lstm.sh -------------------------------------------------------------------------------- /train_lm_transformer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycolab/artificial-languages/HEAD/train_lm_transformer.sh --------------------------------------------------------------------------------