Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added citation to readme! #1

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Implied NLI

Code & resources for the paper [Entailed Between the Lines: Incorporating Implication into NLI](https://arxiv.org/abs/2501.07719)

### Dataset Overview
**Implied NLI**, or **INLI** is a corpus of 10k premises that mirror real-world communication and 40k hypotheses that are implied, explicit, neutral, and contradictory.

* Number of examples: 40,000
* Number of labels: 4 (implied entailment entailment, explicit, neutral, contradictory)
* Number of labels: 4 (implied entailment, explicit entailment, neutral, contradictory)

On top of the raw data, we also include all prompts used to generate INLI, all human annotations described in the paper, and the outputs of the LLM experiments described in the paper.

For more details on the design and content of the dataset, please see [our paper]()
For more details on the design and content of the dataset, please see [our paper](https://arxiv.org/abs/2501.07719)

### Data Format
Our raw dataset is split into three csv files.
Expand All @@ -27,9 +29,19 @@ In each of these files, one row represents a premise and four corresponding hypo
* `contradiction`: A hypothesis contradicted by the premise

## Citation
```
@misc{havaldar2025entailedlinesincorporatingimplication,
title={Entailed Between the Lines: Incorporating Implication into NLI},
author={Shreya Havaldar and Hamidreza Alvari and Alex Fabrikant and John Palowitch and Mohammad Javad Hosseini and Senaka Buthpitiya},
year={2025},
eprint={2501.07719},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2501.07719},
}
```

## Contact

[Shreya Havaldar](https://shreyahavaldar.com/)

## Disclaimer
Expand Down