├── LICENSE ├── Readme.md ├── data ├── download.py ├── fetch_and_preprocess.sh ├── preprocess_data.py └── preprocess_data_treelstm.py └── scripts ├── ESIM ├── data_iterator.py ├── gen.py ├── main.py ├── train.py └── train.sh └── TreeLSTM_IM ├── binary_tree.py ├── data_iterator.py ├── main.py ├── train.py └── train.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/Readme.md -------------------------------------------------------------------------------- /data/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/data/download.py -------------------------------------------------------------------------------- /data/fetch_and_preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/data/fetch_and_preprocess.sh -------------------------------------------------------------------------------- /data/preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/data/preprocess_data.py -------------------------------------------------------------------------------- /data/preprocess_data_treelstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/data/preprocess_data_treelstm.py -------------------------------------------------------------------------------- /scripts/ESIM/data_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/ESIM/data_iterator.py -------------------------------------------------------------------------------- /scripts/ESIM/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/ESIM/gen.py -------------------------------------------------------------------------------- /scripts/ESIM/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/ESIM/main.py -------------------------------------------------------------------------------- /scripts/ESIM/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/ESIM/train.py -------------------------------------------------------------------------------- /scripts/ESIM/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/ESIM/train.sh -------------------------------------------------------------------------------- /scripts/TreeLSTM_IM/binary_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/TreeLSTM_IM/binary_tree.py -------------------------------------------------------------------------------- /scripts/TreeLSTM_IM/data_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/TreeLSTM_IM/data_iterator.py -------------------------------------------------------------------------------- /scripts/TreeLSTM_IM/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/TreeLSTM_IM/main.py -------------------------------------------------------------------------------- /scripts/TreeLSTM_IM/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/TreeLSTM_IM/train.py -------------------------------------------------------------------------------- /scripts/TreeLSTM_IM/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecq1231/nli/HEAD/scripts/TreeLSTM_IM/train.sh --------------------------------------------------------------------------------