├── .gitignore ├── README.md ├── config.json ├── const.py ├── data ├── seq2seq_re │ └── webnlg │ │ └── exp_tmp │ │ └── webnlg-ONE-5-0.001-100-gru-1000-1000 │ │ └── placeholder └── webnlg │ └── entity_end_position │ ├── dev.json │ ├── relations2id.json │ ├── train.json │ ├── valid.json │ ├── words2id.json │ └── words_id2vector.json ├── data_prepare.py ├── evaluation.py ├── main.py ├── model.py ├── saved_model └── README.md └── tune.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/config.json -------------------------------------------------------------------------------- /const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/const.py -------------------------------------------------------------------------------- /data/seq2seq_re/webnlg/exp_tmp/webnlg-ONE-5-0.001-100-gru-1000-1000/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/webnlg/entity_end_position/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/data/webnlg/entity_end_position/dev.json -------------------------------------------------------------------------------- /data/webnlg/entity_end_position/relations2id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/data/webnlg/entity_end_position/relations2id.json -------------------------------------------------------------------------------- /data/webnlg/entity_end_position/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/data/webnlg/entity_end_position/train.json -------------------------------------------------------------------------------- /data/webnlg/entity_end_position/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/data/webnlg/entity_end_position/valid.json -------------------------------------------------------------------------------- /data/webnlg/entity_end_position/words2id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/data/webnlg/entity_end_position/words2id.json -------------------------------------------------------------------------------- /data/webnlg/entity_end_position/words_id2vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/data/webnlg/entity_end_position/words_id2vector.json -------------------------------------------------------------------------------- /data_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/data_prepare.py -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/evaluation.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/model.py -------------------------------------------------------------------------------- /saved_model/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindChimeRan/CopyMTL/HEAD/tune.sh --------------------------------------------------------------------------------