MMMio commited on
Commit
5248654
1 Parent(s): ebd9044

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -7
README.md CHANGED
@@ -6,7 +6,7 @@ tags:
6
  - unsloth
7
  - llama
8
  - trl
9
- license: cc-by-nc-sa-2.0
10
  language:
11
  - ja
12
  ---
@@ -23,13 +23,69 @@ This llama model was trained 2x faster with [Unsloth](https://github.com/unsloth
23
 
24
  # README
25
  ## モデル概要
26
- 本モデルは、日本語事前学習済みモデル [llm-jp/llm-jp-3-13b](https://huggingface.co/llm-jp/llm-jp-3-13b)に、[ichikara-instruction: LLMのための日本語インストラクションデータ](https://liat-aip.sakura.ne.jp/wp/llm%E3%81%AE%E3%81%9F%E3%82%81%E3%81%AE%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%A9%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3%E3%83%87%E3%83%BC%E3%82%BF%E4%BD%9C%E6%88%90/)を用いて Fine-Tuning したモデルである。
27
 
28
  ## ライセンス
29
  本モデルは、[CC-BY-NC-SA](https://creativecommons.org/licenses/by-nc-sa/4.0/) ライセンスの下で公開されています。
 
 
 
 
 
30
 
31
- # LLMでの出力方法
32
- ## 1. 学習方法
33
- サンプルコードを使用してFine-Tuningをおこなった。学習データも同様
34
- ## 2. 推論方法
35
- T4 GPU環境で、同じくサンプルコード (unsloth) を使用して推論。
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - unsloth
7
  - llama
8
  - trl
9
+ license: cc-by-nc-sa-4.0
10
  language:
11
  - ja
12
  ---
 
23
 
24
  # README
25
  ## モデル概要
26
+ 本モデルは、日本語事前学習済みモデル [llm-jp/llm-jp-3-13b](https://huggingface.co/llm-jp/llm-jp-3-13b)に、[ichikara-instruction: LLMのための日本語インストラクションデータ](https://liat-aip.sakura.ne.jp/wp/llm%E3%81%AE%E3%81%9F%E3%82%81%E3%81%AE%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%A9%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3%E3%83%87%E3%83%BC%E3%82%BF%E4%BD%9C%E6%88%90/)を用いて Fine-Tuning したモデルです。
27
 
28
  ## ライセンス
29
  本モデルは、[CC-BY-NC-SA](https://creativecommons.org/licenses/by-nc-sa/4.0/) ライセンスの下で公開されています。
30
+ 1. **著作権表示 (BY)**: モデルを使用する場合は、必ず著作者にクレジットを付与してください。
31
+ 2. **非商用 (NC)**: モデルの使用は非商用目的に限定されます。
32
+ 3. **継承 (SA)**: このモデルを基にした成果物も CC-BY-NC-SA 4.0 の下で公開する必要があります。
33
+ 元モデルは [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) ライセンスの下で提供されており、Fine-Tune のデータセットは CC-BY-NC-SA 4.0 に基づいています。
34
+ 結果として、このモデルは CC-BY-NC-SA 4.0 ライセンスに準じます。
35
 
36
+ ## 使用方法
37
+ 以下は、ELYZA-tasks-100-TV を出力するためのコードです。
38
+ ```python
39
+ from unsloth import FastLanguageModel
40
+ import torch, json
41
+ from tqdm import tqdm
42
+
43
+ model_name = "MMMio/llm-jp-3-13b-it"
44
+ # あなたの Huggingface トークン
45
+ HF_TOKEN = 'your_huggingface_token'
46
+
47
+ max_seq_length = 2048
48
+ dtype = None
49
+ load_in_4bit = True
50
+
51
+ model, tokenizer = FastLanguageModel.from_pretrained(
52
+ model_name = model_name,
53
+ max_seq_length = max_seq_length,
54
+ dtype = dtype,
55
+ load_in_4bit = load_in_4bit,
56
+ token = HF_TOKEN,
57
+ )
58
+ FastLanguageModel.for_inference(model)
59
+
60
+ # データセットの読み込み。
61
+ # omnicampusの開発環境では、左にタスクのjsonlをドラッグアンドドロップしてから実行。
62
+ datasets = []
63
+ with open("./elyza-tasks-100-TV_0.jsonl", "r") as f:
64
+ item = ""
65
+ for line in f:
66
+ line = line.strip()
67
+ item += line
68
+ if item.endswith("}"):
69
+ datasets.append(json.loads(item))
70
+ item = ""
71
+
72
+ # 推論
73
+ results = []
74
+ results_2 = []
75
+ for dt in tqdm(datasets):
76
+ task_id = dt["task_id"]
77
+ input = dt["input"]
78
+
79
+ prompt = f"""### 指示\n{input}\n### 回答\n"""
80
+ inputs = tokenizer([prompt], return_tensors = "pt").to(model.device)
81
+ output = model.generate(**inputs, max_new_tokens = 512, use_cache = True, do_sample=False, repetition_penalty=1.2)
82
+ prediction = tokenizer.decode(output[0], skip_special_tokens=True).split('\n### 回答')[-1]
83
+ results_2.append({"task_id": task_id, "input": input, "output": prediction})
84
+
85
+ # ディレクトリを作成(存在しない場合)
86
+ filename = model_name.split('/')[-1]
87
+ with open(f"./{filename}_output.jsonl", mode='w', encoding='utf-8') as f:
88
+ for result in results_2:
89
+ json.dump(result, f, ensure_ascii=False)
90
+ f.write('\n')
91
+ ```