ScottaStrong commited on
Commit
e695364
·
1 Parent(s): c297249

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -11,8 +11,8 @@ Chat with the model:
11
  ```python
12
  from transformers import AutoTokenizer, AutoModelWithLMHead
13
 
14
- tokenizer = AutoTokenizer.from_pretrained("r3dhummingbird/DialoGPT-medium-joshua")
15
- model = AutoModelWithLMHead.from_pretrained("r3dhummingbird/DialoGPT-medium-joshua")
16
  # Let's chat for 4 lines
17
  for step in range(4):
18
  # encode the new user input, add the eos_token and return a tensor in Pytorch
 
11
  ```python
12
  from transformers import AutoTokenizer, AutoModelWithLMHead
13
 
14
+ tokenizer = AutoTokenizer.from_pretrained("scottastrong/DialogGPT-small-joshua")
15
+ model = AutoModelWithLMHead.from_pretrained("scottastrong/DialogGPT-small-joshua")
16
  # Let's chat for 4 lines
17
  for step in range(4):
18
  # encode the new user input, add the eos_token and return a tensor in Pytorch