Datasets:
Tasks:
Text Classification
Modalities:
Text
Sub-tasks:
multi-class-classification
Languages:
Russian
Size:
10K - 100K
License:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,36 +1,51 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
-
|
| 17 |
-
num_bytes: 2136990
|
| 18 |
-
num_examples: 13973
|
| 19 |
-
- name: validation
|
| 20 |
-
num_bytes: 313817
|
| 21 |
-
num_examples: 2082
|
| 22 |
-
- name: test
|
| 23 |
-
num_bytes: 318234
|
| 24 |
-
num_examples: 2090
|
| 25 |
-
download_size: 1346728
|
| 26 |
-
dataset_size: 2769041
|
| 27 |
-
configs:
|
| 28 |
-
- config_name: default
|
| 29 |
-
data_files:
|
| 30 |
-
- split: train
|
| 31 |
-
path: data/train-*
|
| 32 |
-
- split: validation
|
| 33 |
-
path: data/validation-*
|
| 34 |
-
- split: test
|
| 35 |
-
path: data/test-*
|
| 36 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- ru
|
| 4 |
+
license: cc-by-4.0
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-classification
|
| 7 |
+
task_ids:
|
| 8 |
+
- multi-class-classification
|
| 9 |
+
tags:
|
| 10 |
+
- russian
|
| 11 |
+
- vacancy
|
| 12 |
+
- recruitment
|
| 13 |
+
- section-classification
|
| 14 |
+
- hh.ru
|
| 15 |
+
size_categories:
|
| 16 |
+
- 10K<n<100K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
---
|
| 18 |
+
|
| 19 |
+
# Vacancy Section Classifier Dataset (RU)
|
| 20 |
+
|
| 21 |
+
Russian-language dataset for 5-class classification of job vacancy text sections scraped from hh.ru.
|
| 22 |
+
|
| 23 |
+
## Classes
|
| 24 |
+
|
| 25 |
+
| ID | Label | Description |
|
| 26 |
+
|----|-------|-------------|
|
| 27 |
+
| 0 | responsibilities | Job responsibilities / duties |
|
| 28 |
+
| 1 | requirements | Candidate requirements & skills |
|
| 29 |
+
| 2 | terms | Employment terms, salary, benefits |
|
| 30 |
+
| 3 | notes | Company self-intro, perks, culture |
|
| 31 |
+
| 4 | junk | Headers, boilerplate, noise |
|
| 32 |
+
|
| 33 |
+
## Dataset Construction
|
| 34 |
+
|
| 35 |
+
- **Source**: hh.ru job vacancies (2024–2025), crawled and chunked by semantic boundaries
|
| 36 |
+
- **Splits**: train / validation / test (stratified)
|
| 37 |
+
- **Total rows**: ~18 000 (combined_ds union of 9 internal splits)
|
| 38 |
+
- **Labeling**: mix of rule-based pre-labeling + Opus-4 relabeling pass (Tier-2 Opus relabel raised content F1 from 67% → 75%)
|
| 39 |
+
- **Anonymization**: all employer names replaced with industry segment tokens (БАНК, РИТЕЙЛ, ТЕЛЕКОМ, IT-КОМПАНИЯ, ИТ-ИНТЕГРАТОР, ГОССЕКТОР, НЕФТЕГАЗ-ПРОМ, СТРАХОВАНИЕ, ФИНТЕХ-ЛИЗИНГ, ФАРМА-МЕД, ОБРАЗОВАНИЕ, КОМПАНИЯ). Tech-stack tokens (1С, PostgreSQL, Astra Linux, Kaspersky, …) are preserved as label signal.
|
| 40 |
+
|
| 41 |
+
## Usage
|
| 42 |
+
|
| 43 |
+
```python
|
| 44 |
+
from datasets import load_dataset
|
| 45 |
+
|
| 46 |
+
ds = load_dataset("russian-oracle/vacancy-section-classifier-ru")
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
## Related
|
| 50 |
+
|
| 51 |
+
- Model: [russian-oracle/rubert-tiny-vacancy-section-classifier-coreml](https://huggingface.co/russian-oracle/rubert-tiny-vacancy-section-classifier-coreml)
|