├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── data.py ├── img └── EM_F1.png ├── layers.py ├── m_reader.py ├── model.py ├── predictor.py ├── r_net.py ├── rnn_reader.py ├── script ├── evaluate-v1.1.py ├── interactive.py ├── predict.py ├── preprocess.py └── train.py ├── spacy_tokenizer.py ├── utils.py └── vector.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/config.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/data.py -------------------------------------------------------------------------------- /img/EM_F1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/img/EM_F1.png -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/layers.py -------------------------------------------------------------------------------- /m_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/m_reader.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/model.py -------------------------------------------------------------------------------- /predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/predictor.py -------------------------------------------------------------------------------- /r_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/r_net.py -------------------------------------------------------------------------------- /rnn_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/rnn_reader.py -------------------------------------------------------------------------------- /script/evaluate-v1.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/script/evaluate-v1.1.py -------------------------------------------------------------------------------- /script/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/script/interactive.py -------------------------------------------------------------------------------- /script/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/script/predict.py -------------------------------------------------------------------------------- /script/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/script/preprocess.py -------------------------------------------------------------------------------- /script/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/script/train.py -------------------------------------------------------------------------------- /spacy_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/spacy_tokenizer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/utils.py -------------------------------------------------------------------------------- /vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-KnowComp/MnemonicReader/HEAD/vector.py --------------------------------------------------------------------------------