hkiyomaru commited on
Commit
47f4d4c
1 Parent(s): db5ecf4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +155 -0
README.md ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: transformers
21
+ pipeline_tag: text-generation
22
+ inference: false
23
+ ---
24
+ # llm-jp-13b-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: Hugging Face Transformers (Megatron-DeepSpeed format models are 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
+ - accelerate==0.23.0
53
+
54
+ ## Usage
55
+
56
+ ```python
57
+ import torch
58
+ from transformers import AutoTokenizer, AutoModelForCausalLM
59
+ tokenizer = AutoTokenizer.from_pretrained("llm-jp/llm-jp-13b-v1.0")
60
+ model = AutoModelForCausalLM.from_pretrained("llm-jp/llm-jp-13b-v1.0", device_map="auto", torch_dtype=torch.float16)
61
+ text = "自然言語処理とは何か"
62
+ tokenized_input = tokenizer.encode(text, add_special_tokens=False, return_tensors="pt").to(model.device)
63
+ with torch.no_grad():
64
+ output = model.generate(
65
+ tokenized_input,
66
+ max_new_tokens=100,
67
+ do_sample=True,
68
+ top_p=0.95,
69
+ temperature=0.7,
70
+ )[0]
71
+ print(tokenizer.decode(output))
72
+ ```
73
+
74
+
75
+ ## Model Details
76
+
77
+ - **Model type:** Transformer-based Language Model
78
+ - **Total seen tokens:** 300B
79
+
80
+ |Model|Params|Layers|Hidden size|Heads|Context length|
81
+ |:---:|:---:|:---:|:---:|:---:|:---:|
82
+ |13b model|13b|40|5120|40|2048|
83
+ |1.3b model|1.3b|24|2048|16|2048|
84
+
85
+
86
+ ## Training
87
+
88
+ - **Pre-training:**
89
+ - **Hardware:** 96 A100 40GB GPUs ([mdx cluster](https://mdx.jp/en/))
90
+ - **Software:** Megatron-DeepSpeed
91
+
92
+ - **Instruction tuning:**
93
+ - **Hardware:** 8 A100 40GB GPUs ([mdx cluster](https://mdx.jp/en/))
94
+ - **Software:** [TRL](https://github.com/huggingface/trl), [PEFT](https://github.com/huggingface/peft), and [DeepSpeed](https://github.com/microsoft/DeepSpeed)
95
+
96
+ ## Tokenizer
97
+ The tokenizer of this model is based on [huggingface/tokenizers](https://github.com/huggingface/tokenizers) Unigram byte-fallback model.
98
+ The vocabulary entries were converted from [`llm-jp-tokenizer v2.1 (50k)`](https://github.com/llm-jp/llm-jp-tokenizer/releases/tag/v2.1).
99
+ Please refer to [README.md](https://github.com/llm-jp/llm-jp-tokenizer) of `llm-ja-tokenizer` for details on the vocabulary construction procedure.
100
+ - **Model:** Hugging Face Fast Tokenizer using Unigram byte-fallback model which requires `tokenizers>=0.14.0`
101
+ - **Training algorithm:** SentencePiece Unigram byte-fallback
102
+ - **Training data:** A subset of the datasets for model pre-training
103
+ - **Vocabulary size:** 50,570 (mixed vocabulary of Japanese, English, and source code)
104
+
105
+
106
+ ## Datasets
107
+
108
+ ### Pre-training
109
+
110
+ The models have been pre-trained using a blend of the following datasets.
111
+
112
+ | Language | Dataset | Tokens|
113
+ |:---:|:---:|:---:|
114
+ |Japanese|[Wikipedia](https://huggingface.co/datasets/wikipedia)|1.5B
115
+ ||[mC4](https://huggingface.co/datasets/mc4)|136B
116
+ |English|[Wikipedia](https://huggingface.co/datasets/wikipedia)|5B
117
+ ||[The Pile](https://huggingface.co/datasets/EleutherAI/pile)|135B
118
+ |Codes|[The Stack](https://huggingface.co/datasets/bigcode/the-stack)|10B
119
+
120
+ The pre-training was continuously conducted using a total of 10 folds of non-overlapping data, each consisting of approximately 27-28B tokens.
121
+ We finalized the pre-training with additional (potentially) high-quality 27B tokens data obtained from the identical source datasets listed above used for the 10-fold data.
122
+
123
+ ### Instruction tuning
124
+
125
+ The models have been fine-tuned on the following datasets.
126
+
127
+ | Language | Dataset | description |
128
+ |:---|:---:|:---:|
129
+ |Japanese|[jaster](https://github.com/llm-jp/llm-jp-eval)| An automatically transformed data from the existing Japanese NLP datasets |
130
+ ||[databricks-dolly-15k](https://huggingface.co/datasets/databricks/databricks-dolly-15k)| A translated one by DeepL in LLM-jp |
131
+ ||[OpenAssistant Conversations Dataset](https://huggingface.co/datasets/OpenAssistant/oasst1)| A translated one by DeepL in LLM-jp |
132
+
133
+
134
+ ## Evaluation
135
+ 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.
136
+
137
+ ## Risks and Limitations
138
+
139
+ 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.
140
+
141
+
142
+ ## Send Questions to
143
+
144
+ llm-jp(at)nii.ac.jp
145
+
146
+
147
+ ## License
148
+
149
+ [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
150
+
151
+
152
+ ## Model Card Authors
153
+ *The names are listed in alphabetical order.*
154
+
155
+ Hirokazu Kiyomaru, Hiroshi Matsuda, Jun Suzuki, Namgi Han, Saku Sugawara, Shota Sasaki, Shuhei Kurita, Taishi Nakamura, Takumi Okamoto.