├── .gitignore ├── LICENSE ├── NCRFpp ├── const_confs │ ├── train.dyer.sskip.100.linear.config │ ├── train.elmo.linear.config │ └── train.random.300.linear.config ├── dep_confs │ ├── train.dyer.sskip.100.linear.config │ ├── train.elmo.linear.config │ ├── train.random.1024.linear.config │ └── train.random.300.linear.config ├── main.py ├── model │ ├── __init__.py │ ├── charbigru.py │ ├── charbilstm.py │ ├── charcnn.py │ ├── crf.py │ ├── sentclassifier.py │ ├── seqlabel.py │ ├── wordrep.py │ └── wordsequence.py └── utils │ ├── __init__.py │ ├── alphabet.py │ ├── data.py │ ├── functions.py │ ├── metric.py │ └── tagSchemeConverter.py ├── README.md ├── dep2labels ├── __init__.py ├── conll17_ud_eval.py ├── decodeDependencies.py ├── decode_output_file.py ├── decoding.py ├── encode_tree2labels.py ├── encoding.py ├── labeling.py ├── pre_post_processing.py └── run_dep_ncrfpp.py ├── evaluate_dependencies.py ├── evaluate_spans.py ├── requirements.txt ├── run_const_ncrfpp.sh ├── run_dep_ncrfpp.sh ├── run_token_classifier.py ├── run_token_classifier.sh ├── train_bert_model.sh └── tree2labels ├── EVALB ├── COLLINS.prm ├── LICENSE ├── Makefile ├── README ├── bug │ ├── bug.gld │ ├── bug.rsl-new │ ├── bug.rsl-old │ └── bug.tst ├── evalb ├── evalb.c ├── new.prm ├── sample │ ├── sample.gld │ ├── sample.prm │ ├── sample.rsl │ └── sample.tst └── tgrep_proc.prl ├── EVAL_SPRML ├── evalb_spmrl2013.final │ ├── .DS_Store │ ├── Makefile │ ├── Makefile~ │ ├── README │ ├── README.orig │ ├── README~ │ ├── a.out │ ├── evalb.c │ ├── evalb_spmrl │ ├── evalb_spmrl+func │ ├── evalb_spmrl.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── evalb_spmrl │ ├── gold.mrg~ │ ├── hebrew.prm │ ├── new.prm │ ├── orig20080701 │ │ ├── BIKEL.prm │ │ ├── evalb.c │ │ ├── label.prm │ │ ├── new.prm │ │ ├── sample.gld │ │ ├── sample.prm │ │ ├── sample.rsl │ │ ├── sample.tst │ │ ├── tgrep_proc.prl │ │ └── unlabel.prm │ ├── origSancl2012 │ │ ├── README │ │ ├── README~ │ │ └── evalb.c │ ├── spmrl.prm │ ├── spmrl.prm.punct │ ├── spmrl.prm.punct~ │ ├── spmrl.prm~ │ ├── spmrl_hebrew.prm │ ├── status │ └── test.mrg~ └── parse_la.py ├── LICENSE ├── README.md ├── __init__.py ├── baseline_utils.py ├── baselines.py ├── dataset.py ├── dataset_retagged.py ├── encoding2multitask.py ├── encoding2multitask_int.py ├── evaluate.py ├── install.sh ├── run_ncrfpp.py ├── status ├── tree.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/LICENSE -------------------------------------------------------------------------------- /NCRFpp/const_confs/train.dyer.sskip.100.linear.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/const_confs/train.dyer.sskip.100.linear.config -------------------------------------------------------------------------------- /NCRFpp/const_confs/train.elmo.linear.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/const_confs/train.elmo.linear.config -------------------------------------------------------------------------------- /NCRFpp/const_confs/train.random.300.linear.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/const_confs/train.random.300.linear.config -------------------------------------------------------------------------------- /NCRFpp/dep_confs/train.dyer.sskip.100.linear.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/dep_confs/train.dyer.sskip.100.linear.config -------------------------------------------------------------------------------- /NCRFpp/dep_confs/train.elmo.linear.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/dep_confs/train.elmo.linear.config -------------------------------------------------------------------------------- /NCRFpp/dep_confs/train.random.1024.linear.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/dep_confs/train.random.1024.linear.config -------------------------------------------------------------------------------- /NCRFpp/dep_confs/train.random.300.linear.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/dep_confs/train.random.300.linear.config -------------------------------------------------------------------------------- /NCRFpp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/main.py -------------------------------------------------------------------------------- /NCRFpp/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'max' 2 | -------------------------------------------------------------------------------- /NCRFpp/model/charbigru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/model/charbigru.py -------------------------------------------------------------------------------- /NCRFpp/model/charbilstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/model/charbilstm.py -------------------------------------------------------------------------------- /NCRFpp/model/charcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/model/charcnn.py -------------------------------------------------------------------------------- /NCRFpp/model/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/model/crf.py -------------------------------------------------------------------------------- /NCRFpp/model/sentclassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/model/sentclassifier.py -------------------------------------------------------------------------------- /NCRFpp/model/seqlabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/model/seqlabel.py -------------------------------------------------------------------------------- /NCRFpp/model/wordrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/model/wordrep.py -------------------------------------------------------------------------------- /NCRFpp/model/wordsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/model/wordsequence.py -------------------------------------------------------------------------------- /NCRFpp/utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'max' 2 | -------------------------------------------------------------------------------- /NCRFpp/utils/alphabet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/utils/alphabet.py -------------------------------------------------------------------------------- /NCRFpp/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/utils/data.py -------------------------------------------------------------------------------- /NCRFpp/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/utils/functions.py -------------------------------------------------------------------------------- /NCRFpp/utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/utils/metric.py -------------------------------------------------------------------------------- /NCRFpp/utils/tagSchemeConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/NCRFpp/utils/tagSchemeConverter.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/README.md -------------------------------------------------------------------------------- /dep2labels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep2labels/conll17_ud_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/conll17_ud_eval.py -------------------------------------------------------------------------------- /dep2labels/decodeDependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/decodeDependencies.py -------------------------------------------------------------------------------- /dep2labels/decode_output_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/decode_output_file.py -------------------------------------------------------------------------------- /dep2labels/decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/decoding.py -------------------------------------------------------------------------------- /dep2labels/encode_tree2labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/encode_tree2labels.py -------------------------------------------------------------------------------- /dep2labels/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/encoding.py -------------------------------------------------------------------------------- /dep2labels/labeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/labeling.py -------------------------------------------------------------------------------- /dep2labels/pre_post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/pre_post_processing.py -------------------------------------------------------------------------------- /dep2labels/run_dep_ncrfpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/dep2labels/run_dep_ncrfpp.py -------------------------------------------------------------------------------- /evaluate_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/evaluate_dependencies.py -------------------------------------------------------------------------------- /evaluate_spans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/evaluate_spans.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_const_ncrfpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/run_const_ncrfpp.sh -------------------------------------------------------------------------------- /run_dep_ncrfpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/run_dep_ncrfpp.sh -------------------------------------------------------------------------------- /run_token_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/run_token_classifier.py -------------------------------------------------------------------------------- /run_token_classifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/run_token_classifier.sh -------------------------------------------------------------------------------- /train_bert_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/train_bert_model.sh -------------------------------------------------------------------------------- /tree2labels/EVALB/COLLINS.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/COLLINS.prm -------------------------------------------------------------------------------- /tree2labels/EVALB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/LICENSE -------------------------------------------------------------------------------- /tree2labels/EVALB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/Makefile -------------------------------------------------------------------------------- /tree2labels/EVALB/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/README -------------------------------------------------------------------------------- /tree2labels/EVALB/bug/bug.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/bug/bug.gld -------------------------------------------------------------------------------- /tree2labels/EVALB/bug/bug.rsl-new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/bug/bug.rsl-new -------------------------------------------------------------------------------- /tree2labels/EVALB/bug/bug.rsl-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/bug/bug.rsl-old -------------------------------------------------------------------------------- /tree2labels/EVALB/bug/bug.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/bug/bug.tst -------------------------------------------------------------------------------- /tree2labels/EVALB/evalb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/evalb -------------------------------------------------------------------------------- /tree2labels/EVALB/evalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/evalb.c -------------------------------------------------------------------------------- /tree2labels/EVALB/new.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/new.prm -------------------------------------------------------------------------------- /tree2labels/EVALB/sample/sample.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/sample/sample.gld -------------------------------------------------------------------------------- /tree2labels/EVALB/sample/sample.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/sample/sample.prm -------------------------------------------------------------------------------- /tree2labels/EVALB/sample/sample.rsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/sample/sample.rsl -------------------------------------------------------------------------------- /tree2labels/EVALB/sample/sample.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/sample/sample.tst -------------------------------------------------------------------------------- /tree2labels/EVALB/tgrep_proc.prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVALB/tgrep_proc.prl -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/.DS_Store -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/Makefile -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/Makefile~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/Makefile~ -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/README -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/README.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/README.orig -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/README~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/README~ -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/a.out -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb.c -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb_spmrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb_spmrl -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb_spmrl+func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb_spmrl+func -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb_spmrl.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb_spmrl.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb_spmrl.dSYM/Contents/Resources/DWARF/evalb_spmrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/evalb_spmrl.dSYM/Contents/Resources/DWARF/evalb_spmrl -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/gold.mrg~: -------------------------------------------------------------------------------- 1 | (A (B (C un) (E deux))) 2 | 3 | -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/hebrew.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/hebrew.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/new.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/new.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/BIKEL.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/BIKEL.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/evalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/evalb.c -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/label.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/label.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/new.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/new.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/sample.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/sample.gld -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/sample.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/sample.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/sample.rsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/sample.rsl -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/sample.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/sample.tst -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/tgrep_proc.prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/tgrep_proc.prl -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/unlabel.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/orig20080701/unlabel.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/origSancl2012/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/origSancl2012/README -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/origSancl2012/README~: -------------------------------------------------------------------------------- 1 | this version was used for the Sancl 2012 Shared task 2 | -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/origSancl2012/evalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/origSancl2012/evalb.c -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl.prm.punct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl.prm.punct -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl.prm.punct~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl.prm.punct~ -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl.prm~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl.prm~ -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl_hebrew.prm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/spmrl_hebrew.prm -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/evalb_spmrl2013.final/status -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/evalb_spmrl2013.final/test.mrg~: -------------------------------------------------------------------------------- 1 | (A (B (C un) (D deux))) 2 | 3 | -------------------------------------------------------------------------------- /tree2labels/EVAL_SPRML/parse_la.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/EVAL_SPRML/parse_la.py -------------------------------------------------------------------------------- /tree2labels/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/LICENSE -------------------------------------------------------------------------------- /tree2labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/README.md -------------------------------------------------------------------------------- /tree2labels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree2labels/baseline_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/baseline_utils.py -------------------------------------------------------------------------------- /tree2labels/baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/baselines.py -------------------------------------------------------------------------------- /tree2labels/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/dataset.py -------------------------------------------------------------------------------- /tree2labels/dataset_retagged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/dataset_retagged.py -------------------------------------------------------------------------------- /tree2labels/encoding2multitask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/encoding2multitask.py -------------------------------------------------------------------------------- /tree2labels/encoding2multitask_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/encoding2multitask_int.py -------------------------------------------------------------------------------- /tree2labels/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/evaluate.py -------------------------------------------------------------------------------- /tree2labels/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/install.sh -------------------------------------------------------------------------------- /tree2labels/run_ncrfpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/run_ncrfpp.py -------------------------------------------------------------------------------- /tree2labels/status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/status -------------------------------------------------------------------------------- /tree2labels/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/tree.py -------------------------------------------------------------------------------- /tree2labels/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aghie/parsing-as-pretraining/HEAD/tree2labels/utils.py --------------------------------------------------------------------------------