File size: 745 Bytes
3973a46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5960b96
3973a46
 
 
d8b452c
 
 
 
5a941ea
d8b452c
3973a46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5960b96
3973a46
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---

language: ["ru", "en", "be", "bg", "uk", "ro", "kz", "tg", "tat", "sv", "sl", "sr", "uz", "es", "fi"]

tags:

- russian

- fill-mask

- pretraining

- embeddings

- masked-lm


license: mit

widget:

- text: "<mask> на склад"

---

!!! 
At the moment, the model is distilled, a version from one of the first checkpoints is available for download.
We plan to post the full model in the next few days.
!!!

This is a distilled HRBert model for an mlm task.


Sentence embeddings can be produced as follows:

```python

# pip install transformers

from transformers import pipeline


fill_mask = pipeline(
    "fill-mask",
    model='RabotaRu/HRBert-mini',
    tokenizer='RabotaRu/HRBert-mini'
)

fill_mask('<mask> на склад')
```