Unverified Commit 46092f76 authored by Bingchen Zhao's avatar Bingchen Zhao Committed by GitHub
Browse files

Fixed a typo in mistral.md (#26879)

Fix a typo in mistral.md
parent 51042ae8
...@@ -76,7 +76,7 @@ python src/transformers/models/mistral/convert_mistral_weights_to_hf.py \ ...@@ -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`: You can then load the converted model from the `output/path`:
```python ```python
from transformers import MistralForCausalLM, LlamaTokenzier from transformers import MistralForCausalLM, LlamaTokenizer
tokenizer = LlamaTokenizer.from_pretrained("/output/path") tokenizer = LlamaTokenizer.from_pretrained("/output/path")
model = MistralForCausalLM.from_pretrained("/output/path") model = MistralForCausalLM.from_pretrained("/output/path")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment