MaziyarPanahi
commited on
fixing a model's name in the code example
Browse files
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 |
|