├── .gitignore ├── LICENSE.md ├── README.md ├── models ├── .gitignore ├── README.md ├── download.sh ├── evaluate.sh ├── postprocess.sh ├── preprocess.sh └── tools │ ├── Makefile │ ├── m2_to_txt.pl │ ├── merge_long_sents.py │ ├── nltk_tok.py │ ├── remove_repetitions.py │ ├── spellcheck.py │ └── split_long_sents.py ├── outputs ├── jflegdev.eval ├── jflegdev.out ├── jflegtest.eval ├── jflegtest.out ├── test2013.eval ├── test2013.out ├── test2014.eval └── test2014.out └── training ├── .gitignore ├── README.md ├── data ├── Makefile └── conll │ └── README.md ├── evaluate.sh ├── lm.sh ├── scripts ├── postprocess.sh ├── postprocess_safe.sh ├── preprocess.sh └── validate.conll.sh ├── tools ├── Makefile ├── edit_weights.py ├── error_rate.pl ├── m2_to_txt.pl ├── m2scorer_fork ├── merge_long_sents.py ├── remove_empty_lines.py ├── remove_repetitions.py ├── spellcheck.py └── split_long_sents.py ├── train.sh └── transformer.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/README.md -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/.gitignore -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/README.md -------------------------------------------------------------------------------- /models/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/download.sh -------------------------------------------------------------------------------- /models/evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/evaluate.sh -------------------------------------------------------------------------------- /models/postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/postprocess.sh -------------------------------------------------------------------------------- /models/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/preprocess.sh -------------------------------------------------------------------------------- /models/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/tools/Makefile -------------------------------------------------------------------------------- /models/tools/m2_to_txt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/tools/m2_to_txt.pl -------------------------------------------------------------------------------- /models/tools/merge_long_sents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/tools/merge_long_sents.py -------------------------------------------------------------------------------- /models/tools/nltk_tok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/tools/nltk_tok.py -------------------------------------------------------------------------------- /models/tools/remove_repetitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/tools/remove_repetitions.py -------------------------------------------------------------------------------- /models/tools/spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/tools/spellcheck.py -------------------------------------------------------------------------------- /models/tools/split_long_sents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/models/tools/split_long_sents.py -------------------------------------------------------------------------------- /outputs/jflegdev.eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/outputs/jflegdev.eval -------------------------------------------------------------------------------- /outputs/jflegdev.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/outputs/jflegdev.out -------------------------------------------------------------------------------- /outputs/jflegtest.eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/outputs/jflegtest.eval -------------------------------------------------------------------------------- /outputs/jflegtest.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/outputs/jflegtest.out -------------------------------------------------------------------------------- /outputs/test2013.eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/outputs/test2013.eval -------------------------------------------------------------------------------- /outputs/test2013.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/outputs/test2013.out -------------------------------------------------------------------------------- /outputs/test2014.eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/outputs/test2014.eval -------------------------------------------------------------------------------- /outputs/test2014.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/outputs/test2014.out -------------------------------------------------------------------------------- /training/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/.gitignore -------------------------------------------------------------------------------- /training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/README.md -------------------------------------------------------------------------------- /training/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/data/Makefile -------------------------------------------------------------------------------- /training/data/conll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/data/conll/README.md -------------------------------------------------------------------------------- /training/evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/evaluate.sh -------------------------------------------------------------------------------- /training/lm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/lm.sh -------------------------------------------------------------------------------- /training/scripts/postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/scripts/postprocess.sh -------------------------------------------------------------------------------- /training/scripts/postprocess_safe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/scripts/postprocess_safe.sh -------------------------------------------------------------------------------- /training/scripts/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/scripts/preprocess.sh -------------------------------------------------------------------------------- /training/scripts/validate.conll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/scripts/validate.conll.sh -------------------------------------------------------------------------------- /training/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/Makefile -------------------------------------------------------------------------------- /training/tools/edit_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/edit_weights.py -------------------------------------------------------------------------------- /training/tools/error_rate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/error_rate.pl -------------------------------------------------------------------------------- /training/tools/m2_to_txt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/m2_to_txt.pl -------------------------------------------------------------------------------- /training/tools/m2scorer_fork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/m2scorer_fork -------------------------------------------------------------------------------- /training/tools/merge_long_sents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/merge_long_sents.py -------------------------------------------------------------------------------- /training/tools/remove_empty_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/remove_empty_lines.py -------------------------------------------------------------------------------- /training/tools/remove_repetitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/remove_repetitions.py -------------------------------------------------------------------------------- /training/tools/spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/spellcheck.py -------------------------------------------------------------------------------- /training/tools/split_long_sents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/tools/split_long_sents.py -------------------------------------------------------------------------------- /training/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/train.sh -------------------------------------------------------------------------------- /training/transformer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grammatical/neural-naacl2018/HEAD/training/transformer.sh --------------------------------------------------------------------------------