Commit ·
af297b6
1
Parent(s): 874cf48
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ Here is an example of how you can run this model:
|
|
| 24 |
```python
|
| 25 |
from transformers import AutoConfig, AutoModelForMultipleChoice, AutoTokenizer
|
| 26 |
|
| 27 |
-
model_name = "mbert-base-parsinlu-multiple-choice"
|
| 28 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 29 |
config = AutoConfig.from_pretrained(model_name)
|
| 30 |
model = AutoModelForMultipleChoice.from_pretrained(model_name, config = config)
|
|
|
|
| 24 |
```python
|
| 25 |
from transformers import AutoConfig, AutoModelForMultipleChoice, AutoTokenizer
|
| 26 |
|
| 27 |
+
model_name = "persiannlp/mbert-base-parsinlu-multiple-choice"
|
| 28 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 29 |
config = AutoConfig.from_pretrained(model_name)
|
| 30 |
model = AutoModelForMultipleChoice.from_pretrained(model_name, config = config)
|