pvduy commited on
Commit
5bf681c
1 Parent(s): fc3e560

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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/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
  )
 
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
  )