Pretrained bidirectional encoder for russian language.
The model was trained using standard MLM objective on large text corpora including open social data.
See Training Details section for more information.
⚠️ This model contains only the encoder part without any pretrained head.
1from transformers import AutoTokenizer, AutoModel
2
3tokenizer = AutoTokenizer.from_pretrained("deepvk/deberta-v1-base")
4model = AutoModel.from_pretrained("deepvk/deberta-v1-base")
5
6text = "Привет, мир!"
7
8inputs = tokenizer(text, return_tensors='pt')
9predictions = model(**inputs)
400 GB of filtered and deduplicated texts in total.
A mix of the following data: Wikipedia, Books, Twitter comments, Pikabu, Proza.ru, Film subtitles, News websites, and Social corpus.
The model was trained on a machine with 8xA100 for approximately 30 days.
We evaluated the model on
Russian Super Glue dev set.
The best result in each task is marked in bold.
All models have the same size except the distilled version of DeBERTa.