Update README.md
Browse files
README.md
CHANGED
@@ -32,4 +32,22 @@ configs:
|
|
32 |
path: data/test-*
|
33 |
language:
|
34 |
- ar
|
35 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
path: data/test-*
|
33 |
language:
|
34 |
- ar
|
35 |
+
---
|
36 |
+
|
37 |
+
# Arabic Translation of STS Benchmark Dataset
|
38 |
+
|
39 |
+
This repository contains an Arabic translation of the "[mteb/stsbenchmark-sts](https://huggingface.co/datasets/mteb/stsbenchmark-sts
|
40 |
+
)" dataset . The original dataset is designed for evaluating sentence similarity models, and this translated version enables similar research and development in the Arabic language.
|
41 |
+
|
42 |
+
## Translation Details
|
43 |
+
The translation was performed using the "Helsinki-NLP/opus-mt-en-ar" model from Hugging Face.
|
44 |
+
|
45 |
+
|
46 |
+
## How to Use
|
47 |
+
|
48 |
+
|
49 |
+
```python
|
50 |
+
from datasets import load_dataset
|
51 |
+
|
52 |
+
dataset = load_dataset("Ruqiya/stsbenchmark-sts-ar")
|
53 |
+
```
|