File size: 1,741 Bytes
9c54387
 
 
 
 
 
 
 
 
 
8ffcdd8
9c54387
 
 
 
 
 
 
 
 
 
 
 
 
f15fd84
9c54387
0eba4cf
f15fd84
 
 
9c54387
 
d035e66
ef4004e
d035e66
9c54387
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
language: 
 - fa
 - multilingual
thumbnail: "https://upload.wikimedia.org/wikipedia/commons/a/a2/Farsi.svg"
tags:
- multiple-choice 
- wikibert
- persian 
- farsi 
pipeline_tag: text-classification
license: "CC BY-NC-SA 4.0"
datasets:
- parsinlu
metrics:
- accuracy
---

# Multiple-Choice Question Answering (مدل برای پاسخ به سوالات چهار جوابی)

This is a wikibert-based model for multiple-choice question answering. 
Here is an example of how you can run this model: 

```python 
from transformers import AutoConfig, AutoModelForMultipleChoice, AutoTokenizer

model_name = "persiannlp/wikibert-base-parsinlu-multiple-choice"
tokenizer = AutoTokenizer.from_pretrained(model_name)
config = AutoConfig.from_pretrained(model_name)
model = AutoModelForMultipleChoice.from_pretrained(model_name, config = config)


def run_model(input_string):
    input_ids = tokenizer(input_string, return_tensors="pt")
    output = model(input_ids)
    print(output)
    return output


run_model("وسیع ترین کشور جهان کدام است؟ <sep> آمریکا <sep> کانادا <sep> روسیه <sep> چین")
run_model("طامع یعنی ؟ <sep> آزمند <sep> خوش شانس <sep> محتاج <sep> مطمئن")
run_model(
    "زمینی به ۳۱ قطعه متساوی مفروض شده است و هر روز مساحت آماده شده برای احداث، دو برابر مساحت روز قبل است.اگر پس از (۵ روز) تمام زمین آماده شده باشد، در چه روزی یک قطعه زمین آماده شده <sep> روز اول <sep> روز دوم <sep> روز سوم <sep> هیچکدام")

```


For more details, visit this page: https://github.com/persiannlp/parsinlu/