Make IR research faster.
Make IR research efficient/
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
To get a local copy up and running follow these simple steps.
git clone https://github.com/Ankush-Chander/irlab.git
cd irlab
pip install -e .
from irlab import ResultSet
old_rs = ResultSet(primary_key="doc_id", response_key=None)
old_rs.load_json("dat/old_results.json")
new_rs = ResultSet(primary_key="doc_id", response_key=None)
new_rs.load_json("dat/new_results.json")
# view results not found in new result set
(old_rs - new_rs).view_data()
# view common results
old_rs.intersection(new_rs).view_data()
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the MIT License. See LICENSE
for more information.
Ankush Chander - @AnkushChander - ankush@wandlore.in
Project Link: https://github.com/Ankush-Chander/irlab