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