Update README.md
Browse files
README.md
CHANGED
|
@@ -22,3 +22,30 @@ configs:
|
|
| 22 |
- split: test
|
| 23 |
path: data/test-*
|
| 24 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
- split: test
|
| 23 |
path: data/test-*
|
| 24 |
---
|
| 25 |
+
|
| 26 |
+
# RuSciBenchZhoMultilabelClassification
|
| 27 |
+
|
| 28 |
+
The **RuSciBenchZhoMultilabelClassification** task addresses the assignment of multiple semantic categories to a single scientific article, reflecting the interdisciplinary nature of modern research. The dataset used for this benchmark was collected from **sciencechina.cn**, where articles are indexed with titles, abstracts, and typically multiple thematic labels.
|
| 29 |
+
|
| 30 |
+
Originally, the metadata comprised 90 unique labels. To organize these into coherent groups, we utilized **DeepSeek v3.1** for clustering, followed by a **manual validation** step. Labels that were semantically distant from the main groups were aggregated into an "Other" category.
|
| 31 |
+
|
| 32 |
+
For the final dataset, we **excluded the "Other" category** and specifically selected articles associated with multiple high-level classes. The data was subsequently split into training and test sets for evaluation.
|
| 33 |
+
|
| 34 |
+
## How to evaluate on this task
|
| 35 |
+
|
| 36 |
+
First, install MTEB version with this task:
|
| 37 |
+
|
| 38 |
+
```bash
|
| 39 |
+
pip install git+https://github.com/mlsa-iai-msu-lab/ru_sci_bench_mteb.git@ruscibench
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
Then run code evaluate a model on this task:
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
import mteb
|
| 46 |
+
from sentence_transformers import SentenceTransformer
|
| 47 |
+
model_name = "sentence-transformers/all-MiniLM-L6-v2"
|
| 48 |
+
model = mteb.get_model(model_name)
|
| 49 |
+
tasks = mteb.get_tasks(tasks=["RuSciBenchZhoMultilabelClassification"])
|
| 50 |
+
results = mteb.evaluate(model, tasks=tasks)
|
| 51 |
+
```
|