Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,149 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
pipeline_tag: text-generation
|
21 |
+
library_name: transformers
|
22 |
+
inference: false
|
23 |
+
---
|
24 |
+
|
25 |
+
# llm-jp-3-13b
|
26 |
+
|
27 |
+
This repository provides large language models developed by the [Research and Development Center for Large Language Models](https://llmc.nii.ac.jp/) at the [National Institute of Informatics](https://www.nii.ac.jp/en/).
|
28 |
+
|
29 |
+
The development was partially supported by [GENIAC](https://www.meti.go.jp/policy/mono_info_service/geniac/index.html).
|
30 |
+
|
31 |
+
| Model Variant |
|
32 |
+
| :--- |
|
33 |
+
| [llm-jp-3-1.8b](https://huggingface.co/llm-jp/llm-jp-3-1.8b) |
|
34 |
+
| [llm-jp-3-1.8b-instruct](https://huggingface.co/llm-jp/llm-jp-3-1.8b-instruct) |
|
35 |
+
| [llm-jp-3-3.7b](https://huggingface.co/llm-jp/llm-jp-3-3.7b) |
|
36 |
+
| [llm-jp-3-3.7b-instruct](https://huggingface.co/llm-jp/llm-jp-3-3.7b-instruct) |
|
37 |
+
| [llm-jp-3-13b](https://huggingface.co/llm-jp/llm-jp-3-13b) |
|
38 |
+
| [llm-jp-3-13b-instruct](https://huggingface.co/llm-jp/llm-jp-3-13b-instruct) |
|
39 |
+
| [llm-jp-3-172b-beta1](https://huggingface.co/llm-jp/llm-jp-3-172b-beta1) |
|
40 |
+
| [llm-jp-3-172b-beta1-instruct](https://huggingface.co/llm-jp/llm-jp-3-172b-beta1-instruct) |
|
41 |
+
|
42 |
+
|
43 |
+
Checkpoints format: Hugging Face Transformers
|
44 |
+
|
45 |
+
## Required Libraries and Their Versions
|
46 |
+
|
47 |
+
- torch>=2.3.0
|
48 |
+
- transformers>=4.40.1
|
49 |
+
- tokenizers>=0.19.1
|
50 |
+
- accelerate>=0.29.3
|
51 |
+
- flash-attn>=2.5.8
|
52 |
+
|
53 |
+
## Usage
|
54 |
+
|
55 |
+
```python
|
56 |
+
import torch
|
57 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
58 |
+
tokenizer = AutoTokenizer.from_pretrained("llm-jp-3-13b")
|
59 |
+
model = AutoModelForCausalLM.from_pretrained("llm-jp-3-13b", device_map="auto", torch_dtype=torch.bfloat16)
|
60 |
+
text = "自然言語処理とは何か"
|
61 |
+
tokenized_input = tokenizer.encode(text, add_special_tokens=False, return_tensors="pt").to(model.device)
|
62 |
+
with torch.no_grad():
|
63 |
+
output = model.generate(
|
64 |
+
tokenized_input,
|
65 |
+
max_new_tokens=100,
|
66 |
+
do_sample=True,
|
67 |
+
top_p=0.95,
|
68 |
+
temperature=0.7,
|
69 |
+
repetition_penalty=1.05,
|
70 |
+
)[0]
|
71 |
+
print(tokenizer.decode(output))
|
72 |
+
```
|
73 |
+
|
74 |
+
## Model Details
|
75 |
+
|
76 |
+
- **Model type:** Transformer-based Language Model
|
77 |
+
- **Total seen tokens:** 2.1T
|
78 |
+
|
79 |
+
|Params|Layers|Hidden size|Heads|Context length|Embedding parameters|Non-embedding parameters|
|
80 |
+
|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
|
81 |
+
|1.8b|24|2048|16|4096|407,896,064|1,459,718,144|
|
82 |
+
|3.7b|28|3072|24|4096|611,844,096|3,171,068,928|
|
83 |
+
|13b|40|5120|40|4096|1,019,740,160|12,688,184,320|
|
84 |
+
|
85 |
+
|
86 |
+
## Tokenizer
|
87 |
+
|
88 |
+
The tokenizer of this model is based on [huggingface/tokenizers](https://github.com/huggingface/tokenizers) Unigram byte-fallback model.
|
89 |
+
The vocabulary entries were converted from [`llm-jp-tokenizer v3.0`](https://github.com/llm-jp/llm-jp-tokenizer/releases/tag/v3.0b2).
|
90 |
+
Please refer to [README.md](https://github.com/llm-jp/llm-jp-tokenizer) of `llm-jp-tokenizer` for details on the vocabulary construction procedure (the pure SentencePiece training does not reproduce our vocabulary).
|
91 |
+
|
92 |
+
## Datasets
|
93 |
+
|
94 |
+
### Pre-training
|
95 |
+
|
96 |
+
The models have been pre-trained using a blend of the following datasets.
|
97 |
+
|
98 |
+
| Language | Dataset | Tokens|
|
99 |
+
|:---|:---|---:|
|
100 |
+
|Japanese|[Wikipedia](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|2.6B
|
101 |
+
||[Common Crawl](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|762.8B
|
102 |
+
||[WARP/PDF](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|237.3B
|
103 |
+
||[WARP/HTML](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|2.7B
|
104 |
+
||[Kaken](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|1.8B
|
105 |
+
|English|[Wikipedia](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|4.7B
|
106 |
+
||[Dolma/CC-head](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|608.5B
|
107 |
+
||[Dolma/C4](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|181.6B
|
108 |
+
||[Dolma/Reddit](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|83.1B
|
109 |
+
||[Dolma/PeS2o](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|62.9B
|
110 |
+
||[Dolma/Gutenberg](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|5.5B
|
111 |
+
||[Dolma/Wiki](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|3.9B
|
112 |
+
|Code|[The Stack](https://huggingface.co/datasets/bigcode/the-stack)|114.1B
|
113 |
+
|Chinese|[Wikipedia](https://huggingface.co/datasets/bigcode/the-stack)|0.8B
|
114 |
+
|Korean|[Wikipedia](https://huggingface.co/datasets/bigcode/the-stack)|0.3B
|
115 |
+
|
116 |
+
### Instruction tuning
|
117 |
+
|
118 |
+
The models have been fine-tuned on the following datasets.
|
119 |
+
|
120 |
+
| Language | Dataset | description |
|
121 |
+
|:---|:---|:---|
|
122 |
+
|Japanese|[ichikara-instruction-004-002](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/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-%e5%85%ac%e9%96%8b/)| A manually constructed instruction dataset |
|
123 |
+
| |[answer-carefully-002](https://liat-aip.sakura.ne.jp/wp/answercarefully-dataset/)| A manually constructed instruction dataset focusing on LLMs' safety |
|
124 |
+
| |ichikara-instruction-format| A small amount of instruction dataset edited from ichikara-instruction, with some constraints on the output format. |
|
125 |
+
| |[AutoMultiTurnByCalm3-22B](https://huggingface.co/datasets/kanhatakeyama/AutoMultiTurnByCalm3-22B)| A synthetic instruction dataset. |
|
126 |
+
| |[ramdom-to-fixed-multiturn-Calm3](https://huggingface.co/datasets/kanhatakeyama/ramdom-to-fixed-multiturn-Calm3)| A synthetic instruction dataset. |
|
127 |
+
| |[wizardlm8x22b-logical-math-coding-sft-ja](https://huggingface.co/datasets/kanhatakeyama/wizardlm8x22b-logical-math-coding-sft-ja)| A synthetic instruction dataset. We used sampled one.|
|
128 |
+
| |[wizardlm8x22b-logical-math-coding-sft_additional-ja](https://huggingface.co/datasets/kanhatakeyama/wizardlm8x22b-logical-math-coding-sft_additional-ja)| A synthetic instruction dataset. We used sampled one.|
|
129 |
+
| |[Synthetic-JP-EN-Coding-Dataset-567k](https://huggingface.co/datasets/Aratako/Synthetic-JP-EN-Coding-Dataset-567k)| A synthetic instruction dataset. We used sampled one.|
|
130 |
+
|English |[FLAN](https://huggingface.co/datasets/Open-Orca/FLAN) | We used sampled one. |
|
131 |
+
|
132 |
+
## Risks and Limitations
|
133 |
+
|
134 |
+
The models released here are in the early stages of our research and development and have not been tuned to ensure outputs align with human intent and safety considerations.
|
135 |
+
|
136 |
+
|
137 |
+
## Send Questions to
|
138 |
+
|
139 |
+
llm-jp(at)nii.ac.jp
|
140 |
+
|
141 |
+
|
142 |
+
## License
|
143 |
+
|
144 |
+
[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
145 |
+
|
146 |
+
|
147 |
+
## Model Card Authors
|
148 |
+
|
149 |
+
Takashi Kodama.
|