├── README.md ├── data └── corpus.tar.gz ├── mt_ie ├── __init__.py ├── __main__.py ├── data_utils.py ├── decoder.py ├── seq2seq.py ├── seq2seq_model.py └── utils.py ├── run.sh └── utils └── multi-bleu.perl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/README.md -------------------------------------------------------------------------------- /data/corpus.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/data/corpus.tar.gz -------------------------------------------------------------------------------- /mt_ie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mt_ie/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/mt_ie/__main__.py -------------------------------------------------------------------------------- /mt_ie/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/mt_ie/data_utils.py -------------------------------------------------------------------------------- /mt_ie/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/mt_ie/decoder.py -------------------------------------------------------------------------------- /mt_ie/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/mt_ie/seq2seq.py -------------------------------------------------------------------------------- /mt_ie/seq2seq_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/mt_ie/seq2seq_model.py -------------------------------------------------------------------------------- /mt_ie/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/mt_ie/utils.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/run.sh -------------------------------------------------------------------------------- /utils/multi-bleu.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheng-z/cross-lingual-open-ie/HEAD/utils/multi-bleu.perl --------------------------------------------------------------------------------