File size: 549 Bytes
5a94124 e871978 5a94124 e871978 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
---
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")
|