manu commited on
Commit
8575dfa
1 Parent(s): 871ed9c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -43,7 +43,7 @@ def patch_transformers():
43
  ```python
44
  # patch_transformers() must have been executed beforehand
45
 
46
- tokenizer = AutoTokenizer.from_pretrained(self.tokenizer_name, use_auth_token=self.use_auth_token)
47
  model = AutoModel.from_pretrained("manu/lilt-infoxlm-base")
48
  model = AutoModelForTokenClassification.from_pretrained("manu/lilt-infoxlm-base") # to be fine-tuned on a token classification task
49
  ```
 
43
  ```python
44
  # patch_transformers() must have been executed beforehand
45
 
46
+ tokenizer = AutoTokenizer.from_pretrained("microsoft/infoxlm-base")
47
  model = AutoModel.from_pretrained("manu/lilt-infoxlm-base")
48
  model = AutoModelForTokenClassification.from_pretrained("manu/lilt-infoxlm-base") # to be fine-tuned on a token classification task
49
  ```