passaglia commited on
Commit
21715de
1 Parent(s): 666a241

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -3
README.md CHANGED
@@ -2,16 +2,38 @@
2
  license: mit
3
  language:
4
  - ja
5
- pretty_name: Rakuda - Questions for Japanese models
6
  task_categories:
7
  - conversational
 
8
  size_categories:
9
  - n<1K
 
 
10
  ---
11
 
 
 
 
 
12
  This is a set of 40 questions in Japanese about Japanese-specific topics, designed to evaluate the Japanese capabilities of LLMs and chatbots.
13
 
14
- The questions span four categories: history, society, government, and geography.
15
  Questions in the first three categories are open-ended, while the geography questions are more specific.
16
 
17
- Answers to these questions can be used to rank the Japanese abilities of models, in the same way the [vicuna-eval questions](https://lmsys.org/vicuna_eval/) are frequently used to measure the usefulness of models as assistants.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: mit
3
  language:
4
  - ja
5
+ pretty_name: Rakuda - Questions for Japanese Models
6
  task_categories:
7
  - conversational
8
+ - question-answering
9
  size_categories:
10
  - n<1K
11
+ source_datasets:
12
+ - original
13
  ---
14
 
15
+ # Rakuda - Questions for Japanese models
16
+
17
+ **Repository**: [https://github.com/yuzu-ai/japanese-llm-ranking](https://github.com/yuzu-ai/japanese-llm-ranking)
18
+
19
  This is a set of 40 questions in Japanese about Japanese-specific topics, designed to evaluate the Japanese capabilities of LLMs and chatbots.
20
 
21
+ The questions are evenly distributed between four categories: history, society, government, and geography.
22
  Questions in the first three categories are open-ended, while the geography questions are more specific.
23
 
24
+ Answers to these questions can be used to rank the Japanese abilities of models, in the same way the [vicuna-eval questions](https://lmsys.org/vicuna_eval/) are frequently used to measure the usefulness of models as assistants.
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from datasets import load_dataset
30
+ dataset = load_dataset("yuzuai/rakuda-questions")
31
+ print(dataset)
32
+
33
+ # => DatasetDict({
34
+ # train: Dataset({
35
+ # features: ['category', 'question_id', 'text'],
36
+ # num_rows: 40
37
+ # })
38
+ # })
39
+ ```