Update README.md
Browse files
README.md
CHANGED
@@ -30,9 +30,9 @@ Get started generating text with `Stable Zephyr 3B` by using the following code
|
|
30 |
|
31 |
```python
|
32 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
33 |
-
tokenizer = AutoTokenizer.from_pretrained("stabilityai/
|
34 |
model = AutoModelForCausalLM.from_pretrained(
|
35 |
-
"stabilityai/
|
36 |
trust_remote_code=True,
|
37 |
torch_dtype="auto",
|
38 |
)
|
|
|
30 |
|
31 |
```python
|
32 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
33 |
+
tokenizer = AutoTokenizer.from_pretrained("stabilityai/stable_zephyr_3b_dpo")
|
34 |
model = AutoModelForCausalLM.from_pretrained(
|
35 |
+
"stabilityai/stable_zephyr_3b_dpo",
|
36 |
trust_remote_code=True,
|
37 |
torch_dtype="auto",
|
38 |
)
|