File size: 851 Bytes
692d744
910edb5
 
 
 
692d744
 
910edb5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
base_model: []
tags:
- mergekit
- merge
license: apache-2.0
---
This is a corrected merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).

More descriptions of the model will be added soon.

### **Loading the Model**

Use the following Python code to load the model:

```python
import torch
from transformers import MistralForCausalLM, AutoTokenizer

model = MistralForCausalLM.from_pretrained("vanillaOVO/correction_2", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("vanillaOVO/correction_2")
```

### **Generating Text**

To generate text, use the following Python code:

```python
text = "Large language models are "
inputs = tokenizer(text, return_tensors="pt")

outputs = model.generate(**inputs, max_new_tokens=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
```