This repository provides large language models developed by LLM-jp, a collaborative project launched in Japan.
| Pre-trained models |
| llm-jp-13b-v1.0 |
| llm-jp-1.3b-v1.0 |
| Checkpoints format: Hugging Face Transformers (Megatron-DeepSpeed format models are available here) |
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("llm-jp/llm-jp-1.3b-v1.0")
model = AutoModelForCausalLM.from_pretrained("llm-jp/llm-jp-1.3b-v1.0", device_map="auto", torch_dtype=torch.float16)
text = "自然言語処理とは何か"
tokenized_input = tokenizer.encode(text, add_special_tokens=False, return_tensors="pt").to(model.device)
with torch.no_grad():
output = model.generate(
tokenized_input,
max_new_tokens=20,
do_sample=True,
top_p=0.90,
temperature=0.7,
)[0]
print(tokenizer.decode(output))
| Model | Params | Layers | Hidden size | Heads | Context length |
|---|---|---|---|---|---|
| 13b model | 13b | 40 | 5120 | 40 | 2048 |
| 1.3b model | 1.3b | 24 | 2048 | 16 | 2048 |
Pre-training:
Instruction tuning:
The tokenizer of this model is based on huggingface/tokenizers Unigram byte-fallback model.
The vocabulary entries were converted from llm-jp-tokenizer v2.1 (50k).
Please refer to README.md of llm-ja-tokenizer for details on the vocabulary construction procedure.
tokenizers>=0.14.0The models have been pre-trained using a blend of the following datasets.
The pre-training was continuously conducted using a total of 10 folds of non-overlapping data, each consisting of approximately 27-28B tokens. 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.
The models have been fine-tuned on the following datasets.
| Language | Dataset | description |
|---|---|---|
| Japanese | jaster | An automatically transformed data from the existing Japanese NLP datasets |
| databricks-dolly-15k | A translated one by DeepL in LLM-jp | |
| OpenAssistant Conversations Dataset | A translated one by DeepL in LLM-jp |
You can view the evaluation results of several LLMs on this leaderboard. We used llm-jp-eval for the evaluation.
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.
llm-jp(at)nii.ac.jp
The names are listed in alphabetical order.
Hirokazu Kiyomaru, Hiroshi Matsuda, Jun Suzuki, Namgi Han, Saku Sugawara, Shota Sasaki, Shuhei Kurita, Taishi Nakamura, Takumi Okamoto.
This repository provides large language models developed by LLM-jp, a collaborative project launched in Japan.
| Pre-trained models |
| llm-jp-13b-v1.0 |
| llm-jp-1.3b-v1.0 |
| Checkpoints format: Hugging Face Transformers (Megatron-DeepSpeed format models are available here) |
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("llm-jp/llm-jp-1.3b-v1.0")
model = AutoModelForCausalLM.from_pretrained("llm-jp/llm-jp-1.3b-v1.0", device_map="auto", torch_dtype=torch.float16)
text = "自然言語処理とは何か"
tokenized_input = tokenizer.encode(text, add_special_tokens=False, return_tensors="pt").to(model.device)
with torch.no_grad():
output = model.generate(
tokenized_input,
max_new_tokens=20,
do_sample=True,
top_p=0.90,
temperature=0.7,
)[0]
print(tokenizer.decode(output))
| Model | Params | Layers | Hidden size | Heads | Context length |
|---|---|---|---|---|---|
| 13b model | 13b | 40 | 5120 | 40 | 2048 |
| 1.3b model | 1.3b | 24 | 2048 | 16 | 2048 |
Pre-training:
Instruction tuning:
The tokenizer of this model is based on huggingface/tokenizers Unigram byte-fallback model.
The vocabulary entries were converted from llm-jp-tokenizer v2.1 (50k).
Please refer to README.md of llm-ja-tokenizer for details on the vocabulary construction procedure.
tokenizers>=0.14.0The models have been pre-trained using a blend of the following datasets.
The pre-training was continuously conducted using a total of 10 folds of non-overlapping data, each consisting of approximately 27-28B tokens. 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.
The models have been fine-tuned on the following datasets.
| Language | Dataset | description |
|---|---|---|
| Japanese | jaster | An automatically transformed data from the existing Japanese NLP datasets |
| databricks-dolly-15k | A translated one by DeepL in LLM-jp | |
| OpenAssistant Conversations Dataset | A translated one by DeepL in LLM-jp |
You can view the evaluation results of several LLMs on this leaderboard. We used llm-jp-eval for the evaluation.
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.
llm-jp(at)nii.ac.jp
The names are listed in alphabetical order.
Hirokazu Kiyomaru, Hiroshi Matsuda, Jun Suzuki, Namgi Han, Saku Sugawara, Shota Sasaki, Shuhei Kurita, Taishi Nakamura, Takumi Okamoto.