├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── qdr ├── __init__.py ├── _ranker.cc ├── ranker.pxd ├── ranker.pyx └── trainer.py ├── requirements.txt ├── setup.py └── test ├── common.py ├── test_ranker.py └── test_trainer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/README.md -------------------------------------------------------------------------------- /qdr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/qdr/__init__.py -------------------------------------------------------------------------------- /qdr/_ranker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/qdr/_ranker.cc -------------------------------------------------------------------------------- /qdr/ranker.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/qdr/ranker.pxd -------------------------------------------------------------------------------- /qdr/ranker.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/qdr/ranker.pyx -------------------------------------------------------------------------------- /qdr/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/qdr/trainer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | coverage 3 | Cython>=0.21 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/setup.py -------------------------------------------------------------------------------- /test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/test/common.py -------------------------------------------------------------------------------- /test/test_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/test/test_ranker.py -------------------------------------------------------------------------------- /test/test_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seomoz/qdr/HEAD/test/test_trainer.py --------------------------------------------------------------------------------