├── LICENSE.txt ├── README.md ├── data ├── .gitignore └── download.py ├── python ├── .DS_Store ├── __init__.py ├── models │ ├── .DS_Store │ ├── DIIN.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── BiDAF.cpython-35.pyc │ │ ├── __init__.cpython-35.pyc │ │ └── bilstm.cpython-35.pyc │ └── attmix_CNN.py ├── my │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── nltk_utils.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ ├── corenlp_interface.py │ ├── nltk_utils.py │ ├── tensorflow │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── general.cpython-35.pyc │ │ │ ├── nn.cpython-35.pyc │ │ │ ├── rnn.cpython-35.pyc │ │ │ └── rnn_cell.cpython-35.pyc │ │ ├── general.py │ │ ├── nn.py │ │ ├── rnn.py │ │ └── rnn_cell.py │ ├── utils.py │ └── zip_save.py ├── train_mnli.py ├── train_quora.py └── util │ ├── .DS_Store │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── blocks.cpython-35.pyc │ ├── data_processing.cpython-35.pyc │ ├── evaluate.cpython-35.pyc │ ├── logger.cpython-35.pyc │ └── parameters.cpython-35.pyc │ ├── blocks.py │ ├── data_processing.py │ ├── evaluate.py │ ├── logger.py │ └── parameters.py └── requirements.txt /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/data/download.py -------------------------------------------------------------------------------- /python/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/.DS_Store -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/models/.DS_Store -------------------------------------------------------------------------------- /python/models/DIIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/models/DIIN.py -------------------------------------------------------------------------------- /python/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/models/__pycache__/BiDAF.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/models/__pycache__/BiDAF.cpython-35.pyc -------------------------------------------------------------------------------- /python/models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /python/models/__pycache__/bilstm.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/models/__pycache__/bilstm.cpython-35.pyc -------------------------------------------------------------------------------- /python/models/attmix_CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/models/attmix_CNN.py -------------------------------------------------------------------------------- /python/my/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/my/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /python/my/__pycache__/nltk_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/__pycache__/nltk_utils.cpython-35.pyc -------------------------------------------------------------------------------- /python/my/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /python/my/corenlp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/corenlp_interface.py -------------------------------------------------------------------------------- /python/my/nltk_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/nltk_utils.py -------------------------------------------------------------------------------- /python/my/tensorflow/__init__.py: -------------------------------------------------------------------------------- 1 | from my.tensorflow.general import * -------------------------------------------------------------------------------- /python/my/tensorflow/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /python/my/tensorflow/__pycache__/general.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/__pycache__/general.cpython-35.pyc -------------------------------------------------------------------------------- /python/my/tensorflow/__pycache__/nn.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/__pycache__/nn.cpython-35.pyc -------------------------------------------------------------------------------- /python/my/tensorflow/__pycache__/rnn.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/__pycache__/rnn.cpython-35.pyc -------------------------------------------------------------------------------- /python/my/tensorflow/__pycache__/rnn_cell.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/__pycache__/rnn_cell.cpython-35.pyc -------------------------------------------------------------------------------- /python/my/tensorflow/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/general.py -------------------------------------------------------------------------------- /python/my/tensorflow/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/nn.py -------------------------------------------------------------------------------- /python/my/tensorflow/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/rnn.py -------------------------------------------------------------------------------- /python/my/tensorflow/rnn_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/tensorflow/rnn_cell.py -------------------------------------------------------------------------------- /python/my/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/utils.py -------------------------------------------------------------------------------- /python/my/zip_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/my/zip_save.py -------------------------------------------------------------------------------- /python/train_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/train_mnli.py -------------------------------------------------------------------------------- /python/train_quora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/train_quora.py -------------------------------------------------------------------------------- /python/util/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/.DS_Store -------------------------------------------------------------------------------- /python/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/util/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /python/util/__pycache__/blocks.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/__pycache__/blocks.cpython-35.pyc -------------------------------------------------------------------------------- /python/util/__pycache__/data_processing.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/__pycache__/data_processing.cpython-35.pyc -------------------------------------------------------------------------------- /python/util/__pycache__/evaluate.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/__pycache__/evaluate.cpython-35.pyc -------------------------------------------------------------------------------- /python/util/__pycache__/logger.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/__pycache__/logger.cpython-35.pyc -------------------------------------------------------------------------------- /python/util/__pycache__/parameters.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/__pycache__/parameters.cpython-35.pyc -------------------------------------------------------------------------------- /python/util/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/blocks.py -------------------------------------------------------------------------------- /python/util/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/data_processing.py -------------------------------------------------------------------------------- /python/util/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/evaluate.py -------------------------------------------------------------------------------- /python/util/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/logger.py -------------------------------------------------------------------------------- /python/util/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YichenGong/Densely-Interactive-Inference-Network/HEAD/python/util/parameters.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | tensorflow == 1.3 3 | tqdm 4 | nltk 5 | parse --------------------------------------------------------------------------------