/Densely-Interactive-Inference-Network

Cleaned code for paper "Natural Language Inference over Interaction Space"

Primary LanguagePythonApache License 2.0Apache-2.0

Densely Interactive Inference Network (DIIN)

This is the code to reproduce the model in Natural Language Inference over Interaction Space.

##Environment python 3.6 tensorflow >= 1.3

Setup

$ git clone https://github.com/YichenGong/Densely-Interactive-Inference-Network.git
$ cd Densely-Interactive-Inference-Network
$ pip install -r requirements.txt

Download Data

When you finish downloading, the folder should look like this:

$ cd data/
$ ls
glove.840B.300d.txt  multinli_0.9  shared.jsonl  snli_1.0
$ cd ..

I don't recommend you to use multinli_1.0 here because the id doesn't match the id in preprocessed sample id.

To run the code

$ cd python 
# on MultiNLI
$ python train_mnli.py DIIN demo_testing 
# on SNLI
$ python train_mnli.py DIIN demo_testing_SNLI --training_completely_on_snli

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.