asaoka commited on
Commit
706304d
1 Parent(s): 5a911d8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Llama2-7B
3
+ tags:
4
+ - generated_from_trainer
5
+ ---
6
+
7
+ # モデル概要
8
+
9
+ Llama2-7Bを日本語データ([taka-yayoi/databricks-dolly-15k-ja](https://huggingface.co/datasets/taka-yayoi/databricks-dolly-15k-ja))を用いてインストラクションチューニングしました.
10
+
11
+ # 使用方法
12
+
13
+ # トレーニング方法
14
+
15
+ インストラクションチューニング + QLoRA
16
+
17
+ # JGLUEスコア
18
+
19
+ | タスク | スコア |
20
+ |:-|:-|
21
+ | jcommonsenseqa-1.1-0.6(acc) | 0.2672 |
22
+
23
+ [JGLUEスコア](https://aclanthology.org/2022.lrec-1.317/)は,Stability AI社の[lm-evaluation-harness](https://github.com/Stability-AI/lm-evaluation-harness)を用いて
24
+ 算出しました.JGLUEスコアの算出に用いたスクリプトを下記に示します.
25
+
26
+ ```bash
27
+ python main.py \
28
+ --model hf-causal-experimental \
29
+ --model_args "pretrained=asaoka/japanese-mistral-300m-clone" \
30
+ --tasks jsquad-1.2-0.6,jcommonsenseqa-1.1-0.6,jnli-1.3-0.6,marc_ja-1.1-0.6 \
31
+ --num_fewshot 2,3,3,3 \
32
+ --device cuda \
33
+ --output_path "./results.json"
34
+ ```