catherinearnett commited on
Commit
eafe47c
1 Parent(s): ef7e383

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -41,8 +41,8 @@ Note: if you do not specify a revision, it will load the final checkpoint of the
41
  ```
42
  from transformers import AutoTokenizer, AutoModel
43
 
44
- tokenizer = AutoTokenizer.from_pretrained("B-GPT_en_nl_simultaneous")
45
- model = AutoModel.from_pretrained("B-GPT_en_nl_simultaneous", revision = "128000")
46
 
47
 
48
  ````
@@ -52,7 +52,7 @@ Text Generation:
52
  ```
53
  from transformers import pipeline
54
 
55
- pipe = pipeline("text-generation", model="B-GPT_en_nl_simultaneous")
56
 
57
  pipe("I am a")
58
 
 
41
  ```
42
  from transformers import AutoTokenizer, AutoModel
43
 
44
+ tokenizer = AutoTokenizer.from_pretrained("catherinearnett/B-GPT_en_nl_simultaneous")
45
+ model = AutoModel.from_pretrained("catherinearnett/B-GPT_en_nl_simultaneous", revision = "128000")
46
 
47
 
48
  ````
 
52
  ```
53
  from transformers import pipeline
54
 
55
+ pipe = pipeline("text-generation", model="catherinearnett/B-GPT_en_nl_simultaneous")
56
 
57
  pipe("I am a")
58