losyer8 commited on
Commit
b1bca7a
1 Parent(s): 07fef4e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +154 -3
README.md CHANGED
@@ -1,9 +1,160 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  library_name: peft
 
 
3
  ---
4
- ## Training procedure
5
 
6
- ### Framework versions
7
 
 
 
 
 
 
 
 
 
 
8
 
9
- - PEFT 0.5.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ - ja
6
+ programming_language:
7
+ - C
8
+ - C++
9
+ - C#
10
+ - Go
11
+ - Java
12
+ - JavaScript
13
+ - Lua
14
+ - PHP
15
+ - Python
16
+ - Ruby
17
+ - Rust
18
+ - Scala
19
+ - TypeScript
20
  library_name: peft
21
+ pipeline_tag: text-generation
22
+ inference: false
23
  ---
24
+ # llm-jp-13b-instruct-lora-dolly-oasst-v1.0
25
 
26
+ This repository provides large language models developed by [LLM-jp](https://llm-jp.nii.ac.jp/), a collaborative project launched in Japan.
27
 
28
+ | Model Variant |
29
+ | :--- |
30
+ |**Instruction models**|
31
+ | [llm-jp-13b-instruct-full-jaster-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-full-jaster-v1.0) |
32
+ | [llm-jp-13b-instruct-full-jaster-dolly-oasst-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-full-jaster-dolly-oasst-v1.0) |
33
+ | [llm-jp-13b-instruct-full-dolly-oasst-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-full-dolly-oasst-v1.0) |
34
+ | [llm-jp-13b-instruct-lora-jaster-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-lora-jaster-v1.0) |
35
+ | [llm-jp-13b-instruct-lora-jaster-dolly-oasst-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-lora-jaster-dolly-oasst-v1.0) |
36
+ | [llm-jp-13b-instruct-lora-dolly-oasst-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-lora-dolly-oasst-v1.0) |
37
 
38
+
39
+ | |
40
+ | :--- |
41
+ |**Pre-trained models**|
42
+ | [llm-jp-13b-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-v1.0) |
43
+ | [llm-jp-1.3b-v1.0](https://huggingface.co/llm-jp/llm-jp-1.3b-v1.0) |
44
+ Checkpoints format: `transformers` (Megatron-DeepSpeed format available [here](https://huggingface.co/llm-jp/llm-jp-13b-v1.0-mdsfmt))
45
+
46
+
47
+ ## Required Libraries and Their Versions
48
+
49
+ - torch>=2.0.0
50
+ - transformers>=4.34.0
51
+ - tokenizers>=0.14.0
52
+ - peft==0.5.0
53
+
54
+ ## Usage
55
+
56
+ ```python
57
+ import torch
58
+ from peft import PeftModel, PeftConfig
59
+ from transformers import AutoTokenizer, AutoModelForCausalLM
60
+ peft_model_name = "llm-jp/llm-jp-13b-instruct-lora-dolly-oasst-v1.0"
61
+ tokenizer = AutoTokenizer.from_pretrained(peft_model_name)
62
+ config = PeftConfig.from_pretrained(peft_model_name)
63
+ model = AutoModelForCausalLM.from_pretrained(config.base_model_name_or_path, torch_dtype=torch.float16)
64
+ model = PeftModel.from_pretrained(model, peft_model_name)
65
+ text = "自然言語処理とは何か"
66
+ text = text + "### 回答:"
67
+ tokenized_input = tokenizer(text, add_special_tokens=False, return_tensors="pt").to(model.device)
68
+ with torch.no_grad():
69
+ output = model.generate(
70
+ **tokenized_input,
71
+ max_new_tokens=100,
72
+ do_sample=True,
73
+ top_p=0.95,
74
+ temperature=0.7,
75
+ )[0]
76
+ print(tokenizer.decode(output))
77
+ ```
78
+
79
+
80
+ ## Model Details
81
+
82
+ - **Model type:** Transformer-based Language Model
83
+ - **Total seen tokens:** 270B+
84
+
85
+ |Model|Params|Layers|Hidden size|Heads|Context length|
86
+ |:---:|:---:|:---:|:---:|:---:|:---:|
87
+ |13b model|13b|40|5120|40|2048|
88
+ |1.3b model|1.3b|24|2048|16|2048|
89
+
90
+
91
+ ## Training
92
+
93
+ - **Pre-training:**
94
+ - **Hardware:** 96 A100 40GB GPUs ([mdx cluster](https://mdx.jp/en/))
95
+ - **Software:** Megatron-DeepSpeed
96
+
97
+ - **Instruction tuning:**
98
+ - **Hardware:** 8 A100 40GB GPUs ([mdx cluster](https://mdx.jp/en/))
99
+ - **Software:** [TRL](https://github.com/huggingface/trl), [PEFT](https://github.com/huggingface/peft), and [DeepSpeed](https://github.com/microsoft/DeepSpeed)
100
+
101
+
102
+ ## Tokenizer
103
+ The tokenizer of this model is based on [huggingface/tokenizers](https://github.com/huggingface/tokenizers) Unigram byte-fallback model.
104
+ The vocab entries were converted from [`llm-jp-tokenizer v2.1 (50k)`](https://github.com/llm-jp/llm-jp-tokenizer/releases/tag/v2.1).
105
+ Please refer to [README.md](https://github.com/llm-jp/llm-jp-tokenizer) of `llm-ja-tokenizer` for the details of vocab constuction steps.
106
+ - **Model:** Hugging Face Fast Tokenizer using Unigram byte-fallback model which requires `tokenizers>=0.14.0`
107
+ - **Training algorithm:** SentencePiece Unigram byte-fallback
108
+ - **Training data:** A subset of the datasets for model pre-training
109
+ - **Vocabulary size:** 50,570 (mixed vocabulary of Japanese, English, and source code)
110
+
111
+
112
+ ## Datasets
113
+
114
+ ### Pre-training
115
+
116
+ The models have been pre-trained on approximately 287.5B tokens, sourced from a blend of the following datasets.
117
+
118
+ | Language | Dataset | Tokens|
119
+ |:---:|:---:|:---:|
120
+ |Japanese|[Wikipedia](https://huggingface.co/datasets/wikipedia)|1.5B
121
+ ||[mC4](https://huggingface.co/datasets/mc4)|136B
122
+ |English|[Wikipedia](https://huggingface.co/datasets/wikipedia)|5B
123
+ ||[The Pile](https://huggingface.co/datasets/EleutherAI/pile)|135B
124
+ |Codes|[The Stack](https://huggingface.co/datasets/bigcode/the-stack)|10B
125
+
126
+ Pretraining was done by 10-hold shards that consists approx. 27-28B tokens. We further finalized the pretraining with additional cleaned 27B tokens data.
127
+
128
+ ### Instruction tuning
129
+
130
+ The models have been fine-tuned on the following datasets.
131
+
132
+ | Language | Dataset | description |
133
+ |:---|:---:|:---:|
134
+ |Japanese|[jaster](https://github.com/llm-jp/llm-jp-eval)| An automatically transformed data from the existing Japanese NLP datasets |
135
+ ||[databricks-dolly-15k](https://huggingface.co/datasets/databricks/databricks-dolly-15k)| A translated one by DeepL in LLM-jp |
136
+ ||[OpenAssistant Conversations Dataset](https://huggingface.co/datasets/OpenAssistant/oasst1)| A translated one by DeepL in LLM-jp |
137
+
138
+
139
+ ## Evaluation
140
+ You can view the evaluation results of several LLMs on this [leaderboard](http://wandb.me/llm-jp-leaderboard). We used [llm-jp-eval](https://github.com/llm-jp/llm-jp-eval) for the evaluation.
141
+
142
+ ## Risks and Limitations
143
+
144
+ The models released here are still in the early stages of our research and development and have not been tuned to ensure outputs align with human intent and safety considerations.
145
+
146
+
147
+ ## Send Questions to
148
+
149
+ llm-jp(at)nii.ac.jp
150
+
151
+
152
+ ## License
153
+
154
+ [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
155
+
156
+
157
+ ## Model Card Authors
158
+ *The names are listed in alphabetical order.*
159
+
160
+ Namgi Han, Hirokazu Kiyomaru, Hiroshi Matsuda, Shota Sasaki, Shuhei Kurita, Taishi Nakamura, Takumi Okamoto.