SimLex-999 / README.md
Yuti's picture
Upload README.md with huggingface_hub
e871978 verified
---
license: cc-by-4.0
task_categories:
- feature-extraction
language:
- en
---
# SimLex-999 Dataset
This is the SimLex-999 dataset in Hugging Face `datasets` format.
## Description
SimLex-999 is a gold standard resource for evaluating semantic similarity models.
## Columns
- `word1`: First word of the pair
- `word2`: Second word of the pair
- `similarity`: Human-annotated similarity score (0-10)
## Reference
https://fh295.github.io/simlex.html
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("Yuti/SimLex-999")