├── .gitignore ├── README.md ├── data └── wikitext-2_train_vocab.txt ├── images └── cogsci2020 │ ├── dll_sg.pdf │ ├── gam_surp_corr_full.pdf │ ├── ppl_loglik.pdf │ └── ppl_sg.pdf ├── scripts ├── .Rhistory ├── analysis.Rmd ├── analysis.nb.html ├── average_sprs.nb.html ├── average_sprs_script.Rmd ├── average_sprs_script.nb.html ├── generate_sentences.ipynb └── harmonize.ipynb └── src └── harmonize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/README.md -------------------------------------------------------------------------------- /data/wikitext-2_train_vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/data/wikitext-2_train_vocab.txt -------------------------------------------------------------------------------- /images/cogsci2020/dll_sg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/images/cogsci2020/dll_sg.pdf -------------------------------------------------------------------------------- /images/cogsci2020/gam_surp_corr_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/images/cogsci2020/gam_surp_corr_full.pdf -------------------------------------------------------------------------------- /images/cogsci2020/ppl_loglik.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/images/cogsci2020/ppl_loglik.pdf -------------------------------------------------------------------------------- /images/cogsci2020/ppl_sg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/images/cogsci2020/ppl_sg.pdf -------------------------------------------------------------------------------- /scripts/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/scripts/.Rhistory -------------------------------------------------------------------------------- /scripts/analysis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/scripts/analysis.Rmd -------------------------------------------------------------------------------- /scripts/analysis.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/scripts/analysis.nb.html -------------------------------------------------------------------------------- /scripts/average_sprs.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/scripts/average_sprs.nb.html -------------------------------------------------------------------------------- /scripts/average_sprs_script.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/scripts/average_sprs_script.Rmd -------------------------------------------------------------------------------- /scripts/average_sprs_script.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/scripts/average_sprs_script.nb.html -------------------------------------------------------------------------------- /scripts/generate_sentences.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/scripts/generate_sentences.ipynb -------------------------------------------------------------------------------- /scripts/harmonize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/scripts/harmonize.ipynb -------------------------------------------------------------------------------- /src/harmonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilcoxeg/neural-networks-read-times/HEAD/src/harmonize.py --------------------------------------------------------------------------------