├── .gitignore ├── LICENSE ├── README.md ├── requirements.in ├── s2search ├── __init__.py ├── features.py ├── rank.py └── text.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/s2search/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/s2search/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/s2search/HEAD/README.md -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | unidecode 4 | nltk 5 | blingfire 6 | awscli 7 | lightgbm==2.3.1 8 | -------------------------------------------------------------------------------- /s2search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/s2search/HEAD/s2search/__init__.py -------------------------------------------------------------------------------- /s2search/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/s2search/HEAD/s2search/features.py -------------------------------------------------------------------------------- /s2search/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/s2search/HEAD/s2search/rank.py -------------------------------------------------------------------------------- /s2search/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/s2search/HEAD/s2search/text.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/s2search/HEAD/setup.py --------------------------------------------------------------------------------