catherinearnett commited on
Commit
adc004d
1 Parent(s): 33e04b8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -38,11 +38,13 @@ Checkpoints are taken at training steps: 0, 10000, 20000, 30000, 40000, 50000, 6
38
 
39
  Load the model:
40
 
 
 
41
  ```
42
  from transformers import AutoTokenizer, AutoModel
43
 
44
  tokenizer = AutoTokenizer.from_pretrained("B-GPT_es_en_simultaneous")
45
- model = AutoModel.from_pretrained("B-GPT_es_en_simultaneous")
46
 
47
 
48
  ````
 
38
 
39
  Load the model:
40
 
41
+ Note: if you do not specify a revision, it will load the final checkpoint of the model. See above for the list of checkpoints. The checkpoint step is the name of the revision.
42
+
43
  ```
44
  from transformers import AutoTokenizer, AutoModel
45
 
46
  tokenizer = AutoTokenizer.from_pretrained("B-GPT_es_en_simultaneous")
47
+ model = AutoModel.from_pretrained("B-GPT_es_en_simultaneous", revision = "128000")
48
 
49
 
50
  ````