├── .env ├── .gitignore ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── conf └── config_no_attention_nodrop_glove_only.json ├── requirements.txt ├── src ├── __init__.py ├── athene │ ├── __init__.py │ ├── retrieval │ │ ├── __init__.py │ │ ├── document │ │ │ ├── __init__.py │ │ │ ├── doc_retrieval.py │ │ │ ├── doc_retrieval_np_sub.py │ │ │ └── docment_retrieval.py │ │ ├── score │ │ │ ├── __init__.py │ │ │ └── score.py │ │ └── sentences │ │ │ ├── __init__.py │ │ │ ├── data_processing │ │ │ ├── __init__.py │ │ │ ├── data.py │ │ │ └── elmo_data.py │ │ │ ├── deep_models │ │ │ ├── ESIM.py │ │ │ ├── ESIMandELMO.py │ │ │ └── __init__.py │ │ │ ├── ensemble.py │ │ │ └── sentence_retrieval.py │ ├── rte │ │ ├── __init__.py │ │ ├── deep_models │ │ │ ├── BaseDeepModel.py │ │ │ ├── BiLSTM.py │ │ │ ├── ESIM_for_ensemble.py │ │ │ ├── ESIM_for_ensemble_glove_only_no_attention.py │ │ │ ├── LSTM.py │ │ │ ├── __init__.py │ │ │ ├── convert_use.py │ │ │ └── copy_graph.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── customized_votingclassifier.py │ │ │ ├── data_reader.py │ │ │ ├── dataset.py │ │ │ ├── estimator_definitions.py │ │ │ ├── fill_gold_sentences.py │ │ │ ├── score.py │ │ │ └── text_processing.py │ └── utils │ │ ├── __init__.py │ │ └── config.py ├── common │ ├── __init__.py │ ├── __init__.pyc │ ├── dataset │ │ ├── __init__.py │ │ ├── block.py │ │ ├── corpus.py │ │ ├── data_set.py │ │ ├── formatter.py │ │ ├── label_schema.py │ │ ├── persistence │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ ├── page.py │ │ │ └── session.py │ │ ├── reader.py │ │ ├── reverse_index.py │ │ └── s3 │ │ │ ├── __init__.py │ │ │ ├── index.py │ │ │ └── iterator.py │ ├── framework │ │ ├── __init__.py │ │ └── task.py │ ├── training │ │ ├── __init__.py │ │ ├── batcher.py │ │ ├── early_stopping.py │ │ ├── options.py │ │ └── run.py │ └── util │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── array.py │ │ ├── log_helper.py │ │ ├── log_helper.pyc │ │ └── random.py ├── retrieval │ ├── __init__.py │ ├── bidaf.py │ ├── fever_doc_db.py │ ├── filter_lists.py │ ├── filter_uninformative.py │ ├── reader.py │ ├── sent_features.py │ ├── sentence.py │ └── snopes_doc_db.py └── scripts │ ├── __init__.py │ ├── athene │ ├── __init__.py │ ├── export_current_config_to_json.py │ ├── pipeline.py │ ├── replace_noise_dataset.py │ ├── replace_noise_dataset_with_scores.py │ ├── rte.py │ ├── rte_fasttext.py │ └── sort_submission.py │ ├── build_db.py │ ├── prepare_submission.py │ └── score.py └── tests └── test_load_models.py /.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=src -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/README.md -------------------------------------------------------------------------------- /conf/config_no_attention_nodrop_glove_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/conf/config_no_attention_nodrop_glove_only.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/retrieval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/retrieval/document/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/retrieval/document/doc_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/document/doc_retrieval.py -------------------------------------------------------------------------------- /src/athene/retrieval/document/doc_retrieval_np_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/document/doc_retrieval_np_sub.py -------------------------------------------------------------------------------- /src/athene/retrieval/document/docment_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/document/docment_retrieval.py -------------------------------------------------------------------------------- /src/athene/retrieval/score/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/retrieval/score/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/score/score.py -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/data_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/data_processing/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/sentences/data_processing/data.py -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/data_processing/elmo_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/sentences/data_processing/elmo_data.py -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/deep_models/ESIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/sentences/deep_models/ESIM.py -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/deep_models/ESIMandELMO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/sentences/deep_models/ESIMandELMO.py -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/deep_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/sentences/ensemble.py -------------------------------------------------------------------------------- /src/athene/retrieval/sentences/sentence_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/retrieval/sentences/sentence_retrieval.py -------------------------------------------------------------------------------- /src/athene/rte/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/rte/deep_models/BaseDeepModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/deep_models/BaseDeepModel.py -------------------------------------------------------------------------------- /src/athene/rte/deep_models/BiLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/deep_models/BiLSTM.py -------------------------------------------------------------------------------- /src/athene/rte/deep_models/ESIM_for_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/deep_models/ESIM_for_ensemble.py -------------------------------------------------------------------------------- /src/athene/rte/deep_models/ESIM_for_ensemble_glove_only_no_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/deep_models/ESIM_for_ensemble_glove_only_no_attention.py -------------------------------------------------------------------------------- /src/athene/rte/deep_models/LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/deep_models/LSTM.py -------------------------------------------------------------------------------- /src/athene/rte/deep_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/rte/deep_models/convert_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/deep_models/convert_use.py -------------------------------------------------------------------------------- /src/athene/rte/deep_models/copy_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/deep_models/copy_graph.py -------------------------------------------------------------------------------- /src/athene/rte/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/rte/utils/customized_votingclassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/utils/customized_votingclassifier.py -------------------------------------------------------------------------------- /src/athene/rte/utils/data_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/utils/data_reader.py -------------------------------------------------------------------------------- /src/athene/rte/utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/utils/dataset.py -------------------------------------------------------------------------------- /src/athene/rte/utils/estimator_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/utils/estimator_definitions.py -------------------------------------------------------------------------------- /src/athene/rte/utils/fill_gold_sentences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/utils/fill_gold_sentences.py -------------------------------------------------------------------------------- /src/athene/rte/utils/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/utils/score.py -------------------------------------------------------------------------------- /src/athene/rte/utils/text_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/rte/utils/text_processing.py -------------------------------------------------------------------------------- /src/athene/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/athene/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/athene/utils/config.py -------------------------------------------------------------------------------- /src/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/__init__.pyc -------------------------------------------------------------------------------- /src/common/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/dataset/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/block.py -------------------------------------------------------------------------------- /src/common/dataset/corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/corpus.py -------------------------------------------------------------------------------- /src/common/dataset/data_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/data_set.py -------------------------------------------------------------------------------- /src/common/dataset/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/formatter.py -------------------------------------------------------------------------------- /src/common/dataset/label_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/label_schema.py -------------------------------------------------------------------------------- /src/common/dataset/persistence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/dataset/persistence/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/persistence/engine.py -------------------------------------------------------------------------------- /src/common/dataset/persistence/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/persistence/page.py -------------------------------------------------------------------------------- /src/common/dataset/persistence/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/persistence/session.py -------------------------------------------------------------------------------- /src/common/dataset/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/reader.py -------------------------------------------------------------------------------- /src/common/dataset/reverse_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/reverse_index.py -------------------------------------------------------------------------------- /src/common/dataset/s3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/dataset/s3/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/s3/index.py -------------------------------------------------------------------------------- /src/common/dataset/s3/iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/dataset/s3/iterator.py -------------------------------------------------------------------------------- /src/common/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/framework/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/framework/task.py -------------------------------------------------------------------------------- /src/common/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/training/batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/training/batcher.py -------------------------------------------------------------------------------- /src/common/training/early_stopping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/training/early_stopping.py -------------------------------------------------------------------------------- /src/common/training/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/training/options.py -------------------------------------------------------------------------------- /src/common/training/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/training/run.py -------------------------------------------------------------------------------- /src/common/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/util/__init__.pyc -------------------------------------------------------------------------------- /src/common/util/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/util/array.py -------------------------------------------------------------------------------- /src/common/util/log_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/util/log_helper.py -------------------------------------------------------------------------------- /src/common/util/log_helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/util/log_helper.pyc -------------------------------------------------------------------------------- /src/common/util/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/common/util/random.py -------------------------------------------------------------------------------- /src/retrieval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/retrieval/bidaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/retrieval/bidaf.py -------------------------------------------------------------------------------- /src/retrieval/fever_doc_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/retrieval/fever_doc_db.py -------------------------------------------------------------------------------- /src/retrieval/filter_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/retrieval/filter_lists.py -------------------------------------------------------------------------------- /src/retrieval/filter_uninformative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/retrieval/filter_uninformative.py -------------------------------------------------------------------------------- /src/retrieval/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/retrieval/reader.py -------------------------------------------------------------------------------- /src/retrieval/sent_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/retrieval/sent_features.py -------------------------------------------------------------------------------- /src/retrieval/sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/retrieval/sentence.py -------------------------------------------------------------------------------- /src/retrieval/snopes_doc_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/retrieval/snopes_doc_db.py -------------------------------------------------------------------------------- /src/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/athene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/athene/export_current_config_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/athene/export_current_config_to_json.py -------------------------------------------------------------------------------- /src/scripts/athene/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/athene/pipeline.py -------------------------------------------------------------------------------- /src/scripts/athene/replace_noise_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/athene/replace_noise_dataset.py -------------------------------------------------------------------------------- /src/scripts/athene/replace_noise_dataset_with_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/athene/replace_noise_dataset_with_scores.py -------------------------------------------------------------------------------- /src/scripts/athene/rte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/athene/rte.py -------------------------------------------------------------------------------- /src/scripts/athene/rte_fasttext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/athene/rte_fasttext.py -------------------------------------------------------------------------------- /src/scripts/athene/sort_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/athene/sort_submission.py -------------------------------------------------------------------------------- /src/scripts/build_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/build_db.py -------------------------------------------------------------------------------- /src/scripts/prepare_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/prepare_submission.py -------------------------------------------------------------------------------- /src/scripts/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/src/scripts/score.py -------------------------------------------------------------------------------- /tests/test_load_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/fever-2018-team-athene/HEAD/tests/test_load_models.py --------------------------------------------------------------------------------