├── .gitignore ├── README.md ├── data └── test.conll ├── model.py └── prepare_data.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuhaozhang/dep-embedding-tf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuhaozhang/dep-embedding-tf/HEAD/README.md -------------------------------------------------------------------------------- /data/test.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuhaozhang/dep-embedding-tf/HEAD/data/test.conll -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuhaozhang/dep-embedding-tf/HEAD/model.py -------------------------------------------------------------------------------- /prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuhaozhang/dep-embedding-tf/HEAD/prepare_data.py --------------------------------------------------------------------------------