DjMel commited on
Commit
ace1bc7
1 Parent(s): 1b3b01a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -1
README.md CHANGED
@@ -2,4 +2,54 @@
2
  license: apache-2.0
3
  language:
4
  - sr
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: apache-2.0
3
  language:
4
  - sr
5
+ task_categories:
6
+ - question-answering
7
+ ---
8
+
9
+ ## OZ Eval
10
+ OZ Eval (_sr._ Opšte Znanje Evaluacija) dataset was created for the purposes of evaluating General Knowledge of LLM models in Serbian language.
11
+ Data consists of 1k+ high-quality questions and answers which were used as part of entry exams at the Faculty of Philosophy and Faculty of Organizational Sciences, University of Belgrade.
12
+ The exams test the General Knowledge of students and were used in the enrollment periods from 2003 to 2024.
13
+
14
+
15
+ ## Evaluation process
16
+ Models are evaluated by the following principle using HuggingFace's library lighteval. We supply the model with the following template:
17
+ ```
18
+ Pitanje: {question}
19
+
20
+ Ponuđeni odgovori:
21
+ A. {option_a}
22
+ B. {option_b}
23
+ C. {option_c}
24
+ D. {option_d}
25
+ E. {option_e}
26
+
27
+ Krajnji odgovor:
28
+ ```
29
+ We then compare likelihoods of each letter (`A, B, C, D, E`) and calculate the final accuracy. All evaluations are ran in a 0-shot manner using a chat template.
30
+
31
+ Exact code for the task will be posted [here]().
32
+
33
+
34
+ ## Evaluation results
35
+ | Model |Accuracy| |Stderr|
36
+ |-------|-------:|--|-----:|
37
+ |[Tito-7B-slerp](https://huggingface.co/Stopwolf/Tito-7B-slerp)|0.7099|±|0.0101|
38
+ [Qwen2-7B-instruct](https://huggingface.co/Qwen/Qwen2-7B-Instruct)|0.673|±|0.0105|
39
+ |[Yugo60-GPT](https://huggingface.co/datatab/Yugo60-GPT)|0.6411|±|0.0107|
40
+ |[Llama3-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct)|0.5274|±|0.0111|
41
+ |[Hermes-2-Pro-Mistral-7B](https://huggingface.co/NousResearch/Hermes-2-Pro-Mistral-7B)|0.5145|±|0.0112|
42
+ |[Perucac-7B-slerp](https://huggingface.co/Stopwolf/Perucac-7B-slerp)|0.4247|±|0.011|
43
+ |[SambaLingo-Serbian-Chat](https://huggingface.co/sambanovasystems/SambaLingo-Serbian-Chat)|0.2802|±|0.01|
44
+ |[Gemma-2-9B-it](https://huggingface.co/google/gemma-2-9b-it)|0.2193|±|0.0092|
45
+
46
+
47
+ ### Citation
48
+ ```
49
+ @article{oz-eval,
50
+ author = "Stanivuk Siniša & Đorđević Milena",
51
+ title = "Opšte znanje LLM Eval",
52
+ year = "2024"
53
+ howpublished = {\url{https://huggingface.co/datasets/DjMel/oz-eval}},
54
+ }
55
+ ```