pouya-pezeshkpour commited on
Commit
9c54387
1 Parent(s): 8651464

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - fa
4
+ - multilingual
5
+ thumbnail: "https://upload.wikimedia.org/wikipedia/commons/a/a2/Farsi.svg"
6
+ tags:
7
+ - multiple-choice
8
+ - wikibert
9
+ - persian
10
+ - farsi
11
+ license: "CC BY-NC-SA 4.0"
12
+ datasets:
13
+ - parsinlu
14
+ metrics:
15
+ - accuracy
16
+ ---
17
+
18
+ # Multiple-Choice Question Answering (مدل برای پاسخ به سوالات چهار جوابی)
19
+
20
+ This is a wikibert-based model for multiple-choice question answering.
21
+ Here is an example of how you can run this model:
22
+
23
+ ```python
24
+ from transformers import BertTokenizer, BertModel
25
+
26
+ model_name = f"persiannlp/wikibert-base-parsinlu-multiple-choice"
27
+ tokenizer = BertTokenizer.from_pretrained(model_name)
28
+ model = BertModel.from_pretrained(model_name)
29
+
30
+
31
+ def run_model(input_string, **generator_args):
32
+ input_ids = tokenizer.encode(input_string, return_tensors="pt")
33
+ res = model.generate(input_ids, **generator_args)
34
+ output = tokenizer.batch_decode(res, skip_special_tokens=True)
35
+ print(output)
36
+ return output
37
+
38
+
39
+ run_model("وسیع ترین کشور جهان کدام است؟ <sep> آمریکا <sep> کانادا <sep> روسیه <sep> چین")
40
+ run_model("طامع یعنی ؟ <sep> آزمند <sep> خوش شانس <sep> محتاج <sep> مطمئن")
41
+ run_model(
42
+ "زمینی به ۳۱ قطعه متساوی مفروض شده است و هر روز مساحت آماده شده برای احداث، دو برابر مساحت روز قبل است.اگر پس از (۵ روز) تمام زمین آماده شده باشد، در چه روزی یک قطعه زمین آماده شده <sep> روز اول <sep> روز دوم <sep> روز سوم <sep> هیچکدام")
43
+
44
+ ```
45
+
46
+
47
+ For more details, visit this page: https://github.com/persiannlp/parsinlu/