├── .codecov.yml ├── .coveragerc ├── .flake8 ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.rst ├── SECURITY.md ├── dev ├── README.md ├── requirements-dev.txt ├── requirements-doc.txt ├── tox.ini └── tox_setup.bat ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── dataformats.rst │ ├── index.rst │ ├── metrics.rst │ └── release_history.rst ├── pytest.ini ├── rankereval ├── __init__.py ├── data.py └── metrics.py ├── setup.py └── tests ├── test_data_io.py └── test_metrics.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/dev/requirements-dev.txt -------------------------------------------------------------------------------- /dev/requirements-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/dev/requirements-doc.txt -------------------------------------------------------------------------------- /dev/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/dev/tox.ini -------------------------------------------------------------------------------- /dev/tox_setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/dev/tox_setup.bat -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/dataformats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/docs/source/dataformats.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/metrics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/docs/source/metrics.rst -------------------------------------------------------------------------------- /docs/source/release_history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/docs/source/release_history.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/pytest.ini -------------------------------------------------------------------------------- /rankereval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/rankereval/__init__.py -------------------------------------------------------------------------------- /rankereval/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/rankereval/data.py -------------------------------------------------------------------------------- /rankereval/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/rankereval/metrics.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_data_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/tests/test_data_io.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rankerEval/HEAD/tests/test_metrics.py --------------------------------------------------------------------------------