├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── neural-ranking ├── __init__.py ├── keras_model.py ├── load_data.py ├── loss_function.py ├── prepare_trec_eval.py ├── run_5folds_juno.sh └── run_model.py ├── preprocessing ├── README.md ├── TextCollection.py ├── check_oov_words.py ├── create_train_test_folds.py ├── generate_pair_histograms.py ├── transform_raw_topic_to_title_only.py └── transform_raw_trec_to_single_file.py └── results ├── README.md ├── result_grissom_plain.txt ├── result_grissom_rerank.txt ├── result_schirra.txt └── result_shepard.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/README.md -------------------------------------------------------------------------------- /neural-ranking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neural-ranking/keras_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/neural-ranking/keras_model.py -------------------------------------------------------------------------------- /neural-ranking/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/neural-ranking/load_data.py -------------------------------------------------------------------------------- /neural-ranking/loss_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/neural-ranking/loss_function.py -------------------------------------------------------------------------------- /neural-ranking/prepare_trec_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/neural-ranking/prepare_trec_eval.py -------------------------------------------------------------------------------- /neural-ranking/run_5folds_juno.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/neural-ranking/run_5folds_juno.sh -------------------------------------------------------------------------------- /neural-ranking/run_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/neural-ranking/run_model.py -------------------------------------------------------------------------------- /preprocessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/preprocessing/README.md -------------------------------------------------------------------------------- /preprocessing/TextCollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/preprocessing/TextCollection.py -------------------------------------------------------------------------------- /preprocessing/check_oov_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/preprocessing/check_oov_words.py -------------------------------------------------------------------------------- /preprocessing/create_train_test_folds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/preprocessing/create_train_test_folds.py -------------------------------------------------------------------------------- /preprocessing/generate_pair_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/preprocessing/generate_pair_histograms.py -------------------------------------------------------------------------------- /preprocessing/transform_raw_topic_to_title_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/preprocessing/transform_raw_topic_to_title_only.py -------------------------------------------------------------------------------- /preprocessing/transform_raw_trec_to_single_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/preprocessing/transform_raw_trec_to_single_file.py -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/results/README.md -------------------------------------------------------------------------------- /results/result_grissom_plain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/results/result_grissom_plain.txt -------------------------------------------------------------------------------- /results/result_grissom_rerank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/results/result_grissom_rerank.txt -------------------------------------------------------------------------------- /results/result_schirra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/results/result_schirra.txt -------------------------------------------------------------------------------- /results/result_shepard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-hofstaetter/neural-ranking-drmm/HEAD/results/result_shepard.txt --------------------------------------------------------------------------------