File size: 1,235 Bytes
63a965b
 
00a4a71
63a965b
 
 
 
 
 
 
 
 
e5fea9d
63a965b
 
 
 
 
 
 
ac79828
63a965b
 
 
ac79828
 
 
b14f1fc
 
 
 
 
 
 
 
 
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
---
language:
- ru
pipeline_tag: text2text-generation
metrics:
- f1
tags:
- grammatical error correction
- GEC
- russian
---

This is a fine-tuned version of Multilingual Bart trained in Russian for Grammatical Error Correction.

To initialize the model:

    
    from transformers import MBartForConditionalGeneration, MBart50TokenizerFast
    model = MBartForConditionalGeneration.from_pretrained("MRNH/mbart-russian-grammar-corrector")

To use the tokenizer:
    
    tokenizer = MBart50TokenizerFast.from_pretrained("MRNH/mbart-russian-grammar-corrector", src_lang="ru_RU", tgt_lang="ru_RU")
    input = tokenizer("I was here yesterday to studying",text_target="I was here yesterday to study", return_tensors='pt')

To generate text using the model:

    output = model.generate(input["input_ids"],attention_mask=input["attention_mask"],forced_bos_token_id=tokenizer_it.lang_code_to_id["ru_RU"])



Training of the model is performed using the following loss computation based on the hidden state output h:

    h.logits, h.loss = model(input_ids=input["input_ids"],
                                                  attention_mask=input["attention_mask"],
                                                  labels=input["labels"])