├── .gitignore ├── LICENSE ├── README.md ├── analysis └── constituent_recall.py ├── data ├── README.md └── add_c_parse.py ├── demos ├── demo_test.sh ├── demo_train.sh └── demo_train_head-initial.sh ├── env └── conda_env.txt ├── preprocess ├── parse_simplifier.py └── text_parser.py └── src ├── data.py ├── evaluation.py ├── model.py ├── test.py ├── train.py ├── utils.py └── vocab.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/README.md -------------------------------------------------------------------------------- /analysis/constituent_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/analysis/constituent_recall.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | Put the data here. 2 | -------------------------------------------------------------------------------- /data/add_c_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/data/add_c_parse.py -------------------------------------------------------------------------------- /demos/demo_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/demos/demo_test.sh -------------------------------------------------------------------------------- /demos/demo_train.sh: -------------------------------------------------------------------------------- 1 | cd src 2 | python train.py -------------------------------------------------------------------------------- /demos/demo_train_head-initial.sh: -------------------------------------------------------------------------------- 1 | cd src 2 | python train.py --lambda_hi 20 -------------------------------------------------------------------------------- /env/conda_env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/env/conda_env.txt -------------------------------------------------------------------------------- /preprocess/parse_simplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/preprocess/parse_simplifier.py -------------------------------------------------------------------------------- /preprocess/text_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/preprocess/text_parser.py -------------------------------------------------------------------------------- /src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/src/data.py -------------------------------------------------------------------------------- /src/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/src/evaluation.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/src/model.py -------------------------------------------------------------------------------- /src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/src/test.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/src/train.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExplorerFreda/VGNSL/HEAD/src/vocab.py --------------------------------------------------------------------------------