项目作者: Ankush-Chander

项目描述 :
Make IR research faster.
高级语言: Python
项目地址: git://github.com/Ankush-Chander/irlab.git
创建时间: 2021-05-01T10:52:09Z
项目社区:https://github.com/Ankush-Chander/irlab

开源协议:MIT License

下载


Contributors
Forks
Stargazers
Issues
MIT License
LinkedIn





irlab




Make IR research efficient/


Explore the docs »




View Demo
·
Report Bug
·
Request Feature



Table of Contents





  1. Getting Started


  2. Usage

  3. Roadmap

  4. Contributing

  5. License

  6. Contact



Getting Started

To get a local copy up and running follow these simple steps.

Installation

  1. Clone the repo
    1. git clone https://github.com/Ankush-Chander/irlab.git
  2. Install via pip
    1. cd irlab
    2. pip install -e .

Usage

  1. from irlab import ResultSet
  2. old_rs = ResultSet(primary_key="doc_id", response_key=None)
  3. old_rs.load_json("dat/old_results.json")
  4. new_rs = ResultSet(primary_key="doc_id", response_key=None)
  5. new_rs.load_json("dat/new_results.json")
  6. # view results not found in new result set
  7. (old_rs - new_rs).view_data()
  8. # view common results
  9. old_rs.intersection(new_rs).view_data()

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Ankush Chander - @AnkushChander - ankush@wandlore.in

Project Link: https://github.com/Ankush-Chander/irlab