├── LICENSE ├── README.md ├── barchybrid └── src │ ├── arc_hybrid.py │ ├── parser.py │ ├── utils.py │ └── utils │ ├── eval.pl │ └── evaluation_script │ ├── conll17_ud_eval.py │ └── weights.clas └── bmstparser └── src ├── decoder.py ├── mstlstm.py ├── parser.py ├── utils.py └── utils ├── eval.pl └── evaluation_script ├── conll17_ud_eval.py └── weights.clas /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/README.md -------------------------------------------------------------------------------- /barchybrid/src/arc_hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/barchybrid/src/arc_hybrid.py -------------------------------------------------------------------------------- /barchybrid/src/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/barchybrid/src/parser.py -------------------------------------------------------------------------------- /barchybrid/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/barchybrid/src/utils.py -------------------------------------------------------------------------------- /barchybrid/src/utils/eval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/barchybrid/src/utils/eval.pl -------------------------------------------------------------------------------- /barchybrid/src/utils/evaluation_script/conll17_ud_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/barchybrid/src/utils/evaluation_script/conll17_ud_eval.py -------------------------------------------------------------------------------- /barchybrid/src/utils/evaluation_script/weights.clas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/barchybrid/src/utils/evaluation_script/weights.clas -------------------------------------------------------------------------------- /bmstparser/src/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/bmstparser/src/decoder.py -------------------------------------------------------------------------------- /bmstparser/src/mstlstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/bmstparser/src/mstlstm.py -------------------------------------------------------------------------------- /bmstparser/src/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/bmstparser/src/parser.py -------------------------------------------------------------------------------- /bmstparser/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/bmstparser/src/utils.py -------------------------------------------------------------------------------- /bmstparser/src/utils/eval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/bmstparser/src/utils/eval.pl -------------------------------------------------------------------------------- /bmstparser/src/utils/evaluation_script/conll17_ud_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/bmstparser/src/utils/evaluation_script/conll17_ud_eval.py -------------------------------------------------------------------------------- /bmstparser/src/utils/evaluation_script/weights.clas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusics/bist-parser/HEAD/bmstparser/src/utils/evaluation_script/weights.clas --------------------------------------------------------------------------------