├── README.md ├── binary_span_clas_chn ├── CMakeLists.txt ├── bilstm_cky │ ├── BILSTM-CKY-PARSER.cc │ └── CMakeLists.txt ├── cmake-gpu.sh ├── cmake.sh └── parser_utils │ ├── MinMaxHeap.h │ ├── all_dict.h │ ├── bitreelstm.h │ ├── cl-args.h │ ├── corpus.h │ ├── eval.h │ ├── example.h │ ├── id_builder.h │ ├── span_parser.h │ ├── tree.h │ └── treenode.h ├── chn-exp ├── eval_ch_dev_file.sh ├── eval_ch_test_file.sh ├── test_clas_newlex.sh └── train_clas_newlex.sh └── scripts ├── EVALB ├── COLLINS.prm ├── COLLINS_ch.prm ├── LICENSE ├── Makefile ├── README ├── bug │ ├── bug.gld │ ├── bug.rsl-new │ ├── bug.rsl-old │ └── bug.tst ├── evalb.c ├── new.prm ├── sample │ ├── sample.gld │ ├── sample.prm │ ├── sample.rsl │ └── sample.tst └── tgrep_proc.prl ├── EVALB19971028.tar.gz ├── convert_bin2full_tree.py └── get_fmeasure2.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/README.md -------------------------------------------------------------------------------- /binary_span_clas_chn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/CMakeLists.txt -------------------------------------------------------------------------------- /binary_span_clas_chn/bilstm_cky/BILSTM-CKY-PARSER.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/bilstm_cky/BILSTM-CKY-PARSER.cc -------------------------------------------------------------------------------- /binary_span_clas_chn/bilstm_cky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/bilstm_cky/CMakeLists.txt -------------------------------------------------------------------------------- /binary_span_clas_chn/cmake-gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/cmake-gpu.sh -------------------------------------------------------------------------------- /binary_span_clas_chn/cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/cmake.sh -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/MinMaxHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/MinMaxHeap.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/all_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/all_dict.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/bitreelstm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/bitreelstm.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/cl-args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/cl-args.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/corpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/corpus.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/eval.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/example.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/id_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/id_builder.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/span_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/span_parser.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/tree.h -------------------------------------------------------------------------------- /binary_span_clas_chn/parser_utils/treenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/binary_span_clas_chn/parser_utils/treenode.h -------------------------------------------------------------------------------- /chn-exp/eval_ch_dev_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/chn-exp/eval_ch_dev_file.sh -------------------------------------------------------------------------------- /chn-exp/eval_ch_test_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/chn-exp/eval_ch_test_file.sh -------------------------------------------------------------------------------- /chn-exp/test_clas_newlex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/chn-exp/test_clas_newlex.sh -------------------------------------------------------------------------------- /chn-exp/train_clas_newlex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/chn-exp/train_clas_newlex.sh -------------------------------------------------------------------------------- /scripts/EVALB/COLLINS.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/COLLINS.prm -------------------------------------------------------------------------------- /scripts/EVALB/COLLINS_ch.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/COLLINS_ch.prm -------------------------------------------------------------------------------- /scripts/EVALB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/LICENSE -------------------------------------------------------------------------------- /scripts/EVALB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/Makefile -------------------------------------------------------------------------------- /scripts/EVALB/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/README -------------------------------------------------------------------------------- /scripts/EVALB/bug/bug.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/bug/bug.gld -------------------------------------------------------------------------------- /scripts/EVALB/bug/bug.rsl-new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/bug/bug.rsl-new -------------------------------------------------------------------------------- /scripts/EVALB/bug/bug.rsl-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/bug/bug.rsl-old -------------------------------------------------------------------------------- /scripts/EVALB/bug/bug.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/bug/bug.tst -------------------------------------------------------------------------------- /scripts/EVALB/evalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/evalb.c -------------------------------------------------------------------------------- /scripts/EVALB/new.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/new.prm -------------------------------------------------------------------------------- /scripts/EVALB/sample/sample.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/sample/sample.gld -------------------------------------------------------------------------------- /scripts/EVALB/sample/sample.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/sample/sample.prm -------------------------------------------------------------------------------- /scripts/EVALB/sample/sample.rsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/sample/sample.rsl -------------------------------------------------------------------------------- /scripts/EVALB/sample/sample.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/sample/sample.tst -------------------------------------------------------------------------------- /scripts/EVALB/tgrep_proc.prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB/tgrep_proc.prl -------------------------------------------------------------------------------- /scripts/EVALB19971028.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/EVALB19971028.tar.gz -------------------------------------------------------------------------------- /scripts/convert_bin2full_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/convert_bin2full_tree.py -------------------------------------------------------------------------------- /scripts/get_fmeasure2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeeeyang/two-local-neural-conparsers/HEAD/scripts/get_fmeasure2.py --------------------------------------------------------------------------------