MaziyarPanahi
commited on
fixing a model's name in the code example (#1)
Browse files- fixing a model's name in the code example (76b1aa9919f0cb155b22f3ce71a0b7ad1da0967d)
README.md
CHANGED
@@ -45,7 +45,7 @@ Below is a sample code snippet using `transformers`:
|
|
45 |
```python
|
46 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
47 |
|
48 |
-
model_name = "arcee-ai/
|
49 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
50 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
51 |
|
|
|
45 |
```python
|
46 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
47 |
|
48 |
+
model_name = "arcee-ai/Virtuoso-Medium-v2"
|
49 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
50 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
51 |
|