├── .gitignore ├── LICENSE ├── NPRF-arch.jpg ├── README.md ├── metrics ├── __init__.py ├── evaluations.py └── rank_losses.py ├── model ├── model.py ├── nprf_drmm.py ├── nprf_drmm_config.py ├── nprf_knrm.py ├── nprf_knrm_config.py └── runfold.sh ├── nprf-emnlp2018.pdf ├── preprocess ├── __init__.py ├── matrix.py ├── prepare.py └── prepare_d2d.py ├── sample_log └── utils ├── __init__.py ├── file_operation.py ├── nprf_drmm_pair_generator.py ├── nprf_knrm_pair_generator.py ├── pair_generator.py ├── relevance_info.py └── result.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/LICENSE -------------------------------------------------------------------------------- /NPRF-arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/NPRF-arch.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/README.md -------------------------------------------------------------------------------- /metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metrics/evaluations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/metrics/evaluations.py -------------------------------------------------------------------------------- /metrics/rank_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/metrics/rank_losses.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/model/model.py -------------------------------------------------------------------------------- /model/nprf_drmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/model/nprf_drmm.py -------------------------------------------------------------------------------- /model/nprf_drmm_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/model/nprf_drmm_config.py -------------------------------------------------------------------------------- /model/nprf_knrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/model/nprf_knrm.py -------------------------------------------------------------------------------- /model/nprf_knrm_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/model/nprf_knrm_config.py -------------------------------------------------------------------------------- /model/runfold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/model/runfold.sh -------------------------------------------------------------------------------- /nprf-emnlp2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/nprf-emnlp2018.pdf -------------------------------------------------------------------------------- /preprocess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preprocess/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/preprocess/matrix.py -------------------------------------------------------------------------------- /preprocess/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/preprocess/prepare.py -------------------------------------------------------------------------------- /preprocess/prepare_d2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/preprocess/prepare_d2d.py -------------------------------------------------------------------------------- /sample_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/sample_log -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/file_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/utils/file_operation.py -------------------------------------------------------------------------------- /utils/nprf_drmm_pair_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/utils/nprf_drmm_pair_generator.py -------------------------------------------------------------------------------- /utils/nprf_knrm_pair_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/utils/nprf_knrm_pair_generator.py -------------------------------------------------------------------------------- /utils/pair_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/utils/pair_generator.py -------------------------------------------------------------------------------- /utils/relevance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/utils/relevance_info.py -------------------------------------------------------------------------------- /utils/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucasir/NPRF/HEAD/utils/result.py --------------------------------------------------------------------------------