ryota39 commited on
Commit
8e88264
1 Parent(s): e2ab1c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md CHANGED
@@ -1,3 +1,55 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - question-answering
5
+ - text-generation
6
+ language:
7
+ - ja
8
+ size_categories:
9
+ - 1K<n<10K
10
  ---
11
+ # Aya_ja
12
+
13
+ <!-- Provide a quick summary of the dataset. -->
14
+
15
+ このデータセットは`CohereForAI/aya_dataset`の日本語インストラクションデータのみを抽出したデータセットです。
16
+ 人手でアノテーションされた指示応答のペアが6,259件収録されています。
17
+
18
+ ## 例
19
+
20
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
21
+
22
+ ```json
23
+ [
24
+ {
25
+ "inputs": "火縄銃の威力が全国に知られる事となった、1575年に織田・徳川連合軍が鉄砲隊を用いて武田勝頼率いる騎馬隊を破った戦いを何というでしょう?",
26
+ "targets": "長篠の戦いです。",
27
+ "language": "Japanese",
28
+ "language_code": "jpn",
29
+ "annotation_type": "original-annotations",
30
+ "user_id": "9881e959174fc20243c2b43c01599473325a93d056e73dbc20a9a0a03514026e"
31
+ },
32
+ {
33
+ "inputs": "陸上のリレー競技で次の走者に渡すのはバトンですが、駅伝競技で次の走者に渡すのは何でしょう?",
34
+ "targets": "たすきです。",
35
+ "language": "Japanese",
36
+ "language_code": "jpn",
37
+ "annotation_type": "original-annotations",
38
+ "user_id": "9881e959174fc20243c2b43c01599473325a93d056e73dbc20a9a0a03514026e"
39
+ },
40
+ {
41
+ "inputs": "路線図上は、品川駅と田町駅の間に位置している、2020年3月14日に開業したJR東日本・山手線の新駅の名称は何?",
42
+ "targets": "高輪ゲートウェイ駅です。",
43
+ "language": "Japanese",
44
+ "language_code": "jpn",
45
+ "annotation_type": "original-annotations",
46
+ "user_id": "9881e959174fc20243c2b43c01599473325a93d056e73dbc20a9a0a03514026e"
47
+ },
48
+ ]
49
+ ```
50
+
51
+ ## pythonでの使用例
52
+
53
+ ```python
54
+
55
+ ```