├── .gitignore ├── README.md ├── ckpt └── README.md ├── cleargit.sh ├── configs └── default.cfg ├── lib ├── __init__.py ├── data.py ├── k_means.py ├── tarjan.py └── utils.py ├── models ├── __init__.py └── baseParser.py └── run ├── config.py ├── eval.pl ├── test.py ├── test.sh ├── train.py ├── train.sh └── train3000.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/README.md: -------------------------------------------------------------------------------- 1 | Save trained models here 2 | -------------------------------------------------------------------------------- /cleargit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/cleargit.sh -------------------------------------------------------------------------------- /configs/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/configs/default.cfg -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/lib/data.py -------------------------------------------------------------------------------- /lib/k_means.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/lib/k_means.py -------------------------------------------------------------------------------- /lib/tarjan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/lib/tarjan.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/lib/utils.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from baseParser import * 2 | -------------------------------------------------------------------------------- /models/baseParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/models/baseParser.py -------------------------------------------------------------------------------- /run/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/run/config.py -------------------------------------------------------------------------------- /run/eval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/run/eval.pl -------------------------------------------------------------------------------- /run/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/run/test.py -------------------------------------------------------------------------------- /run/test.sh: -------------------------------------------------------------------------------- 1 | python test.py --dynet-gpu 2 | -------------------------------------------------------------------------------- /run/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/run/train.py -------------------------------------------------------------------------------- /run/train.sh: -------------------------------------------------------------------------------- 1 | python train.py --dynet-gpu 2 | -------------------------------------------------------------------------------- /run/train3000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcyk/Dynet-Biaffine-dependency-parser/HEAD/run/train3000.py --------------------------------------------------------------------------------