Fixed a typo in mistral.md (#26879)

Fix a typo in mistral.md
This commit is contained in:
Bingchen Zhao 2023-10-17 22:06:37 +01:00 committed by GitHub
parent 51042ae8e5
commit 46092f763d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ python src/transformers/models/mistral/convert_mistral_weights_to_hf.py \
You can then load the converted model from the `output/path`:
```python
from transformers import MistralForCausalLM, LlamaTokenzier
from transformers import MistralForCausalLM, LlamaTokenizer
tokenizer = LlamaTokenizer.from_pretrained("/output/path")
model = MistralForCausalLM.from_pretrained("/output/path")