Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -49,4 +49,43 @@ configs:
|
|
| 49 |
data_files:
|
| 50 |
- split: train
|
| 51 |
path: queries/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
data_files:
|
| 50 |
- split: train
|
| 51 |
path: queries/train-*
|
| 52 |
+
language:
|
| 53 |
+
- ar
|
| 54 |
+
tags:
|
| 55 |
+
- information-retrieval
|
| 56 |
+
- nanobeir
|
| 57 |
+
- benchmark
|
| 58 |
---
|
| 59 |
+
|
| 60 |
+
# NanoSciFact - Arabic
|
| 61 |
+
|
| 62 |
+
This dataset is the Arabic version of the NanoSciFact benchmark from the NanoBEIR multilingual collection.
|
| 63 |
+
|
| 64 |
+
## Dataset Origin
|
| 65 |
+
|
| 66 |
+
This dataset is derived from [lightonai/nanobeir-multilingual](https://huggingface.co/datasets/lightonai/nanobeir-multilingual).
|
| 67 |
+
|
| 68 |
+
NanoBEIR is a smaller version of the BEIR benchmark designed for efficient evaluation of information retrieval models.
|
| 69 |
+
|
| 70 |
+
## Dataset Structure
|
| 71 |
+
|
| 72 |
+
The dataset contains three configurations:
|
| 73 |
+
|
| 74 |
+
- **corpus**: The document collection to search through
|
| 75 |
+
- **queries**: The search queries
|
| 76 |
+
- **qrels**: Relevance judgments (query-document pairs with relevance scores)
|
| 77 |
+
|
| 78 |
+
## Usage
|
| 79 |
+
|
| 80 |
+
```python
|
| 81 |
+
from datasets import load_dataset
|
| 82 |
+
|
| 83 |
+
# Load the different configurations
|
| 84 |
+
corpus = load_dataset("wissamantoun/NanoSciFact_Arabic", "corpus")
|
| 85 |
+
queries = load_dataset("wissamantoun/NanoSciFact_Arabic", "queries")
|
| 86 |
+
qrels = load_dataset("wissamantoun/NanoSciFact_Arabic", "qrels")
|
| 87 |
+
```
|
| 88 |
+
|
| 89 |
+
## Citation
|
| 90 |
+
|
| 91 |
+
If you use this dataset, please cite the original BEIR and NanoBEIR work.
|