File size: 1,257 Bytes
335a031 b66385b 335a031 a36e001 335a031 b66385b 335a031 |
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 |
---
license: apache-2.0
inference: false
---
```python
from transformers import AutoTokenizer, AutoModelWithLMHead, AutoModelForCausalLM
import torch
if torch.cuda.is_available():
device = torch.device("cuda")
else :
device = "cpu"
tokenizer = AutoTokenizer.from_pretrained("Ashishkr/grammar_correction")
model = AutoModelForCausalLM.from_pretrained("Ashishkr/grammar_correction").to(device)
input_query="what be the reason for everyone leave the company"
query= "<|startoftext|> " + input_query + " ~~~"
input_ids = tokenizer.encode(query.lower(), return_tensors='pt').to(device)
sample_outputs = model.generate(input_ids,
do_sample=True,
num_beams=1,
max_length=128,
temperature=0.9,
top_p= 0.7,
top_k = 5,
num_return_sequences=3)
corrected_sentences = []
for i in range(len(sample_outputs)):
r = tokenizer.decode(sample_outputs[i], skip_special_tokens=True).split('||')[0]
r = r.split('~~~')[1]
if r not in corrected_sentences:
corrected_sentences.append(r)
print(corrected_sentences)
```
|