|
--- |
|
license: apache-2.0 |
|
language: |
|
- en |
|
- ja |
|
programming_language: |
|
- C |
|
- C++ |
|
- C# |
|
- Go |
|
- Java |
|
- JavaScript |
|
- Lua |
|
- PHP |
|
- Python |
|
- Ruby |
|
- Rust |
|
- Scala |
|
- TypeScript |
|
library_name: transformers |
|
pipeline_tag: text-generation |
|
inference: false |
|
--- |
|
# llm-jp-13b-v2.0 |
|
|
|
This repository provides large language models developed by [LLM-jp](https://llm-jp.nii.ac.jp/), a collaborative project launched in Japan. |
|
|
|
| Model Variant | |
|
| :--- | |
|
|**Instruction models (To be updated)**| |
|
| [llm-jp-13b-instruct-full-jaster-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-full-jaster-v1.0) | |
|
| [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) | |
|
| [llm-jp-13b-instruct-full-dolly-oasst-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-full-dolly-oasst-v1.0) | |
|
| [llm-jp-13b-instruct-lora-jaster-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-lora-jaster-v1.0) | |
|
| [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) | |
|
| [llm-jp-13b-instruct-lora-dolly-oasst-v1.0](https://huggingface.co/llm-jp/llm-jp-13b-instruct-lora-dolly-oasst-v1.0) | |
|
|
|
|
|
| | |
|
| :--- | |
|
|**Pre-trained models**| |
|
| [llm-jp-13b-v2.0](https://huggingface.co/llm-jp/llm-jp-13b-v2.0) | |
|
|
|
Checkpoints format: Hugging Face Transformers |
|
|
|
|
|
## Required Libraries and Their Versions |
|
|
|
- torch>=2.2.2 |
|
- transformers>=4.39.3 |
|
- tokenizers>=0.15.2 |
|
- accelerate>=0.27.2 |
|
- flash-attn>=2.5.6 |
|
|
|
## Usage (To be updated) |
|
|
|
```python |
|
import torch |
|
from transformers import AutoTokenizer, AutoModelForCausalLM |
|
tokenizer = AutoTokenizer.from_pretrained("llm-jp/llm-jp-13b-v2.0") |
|
model = AutoModelForCausalLM.from_pretrained("llm-jp/llm-jp-13b-v2.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=100, |
|
do_sample=True, |
|
top_p=0.95, |
|
temperature=0.7, |
|
)[0] |
|
print(tokenizer.decode(output)) |
|
``` |
|
|
|
|
|
## Model Details (To be updated) |
|
|
|
- **Model type:** Transformer-based Language Model |
|
- **Total seen tokens:** 300B |
|
|
|
|Model|Params|Layers|Hidden size|Heads|Context length| |
|
|:---:|:---:|:---:|:---:|:---:|:---:| |
|
|13b model|13b|40|5120|40|2048| |
|
|
|
|
|
## Training |
|
|
|
- **Pre-training:** |
|
- **Hardware:** 128 A100 40GB GPUs ([mdx cluster](https://mdx.jp/en/)) |
|
- **Software:** Megatron-LM |
|
|
|
- **Instruction tuning:** |
|
- **Hardware:** 8 A100 40GB GPUs ([mdx cluster](https://mdx.jp/en/)) |
|
- **Software:** [TRL](https://github.com/huggingface/trl), [PEFT](https://github.com/huggingface/peft), and [DeepSpeed](https://github.com/microsoft/DeepSpeed) |
|
|
|
## Tokenizer (To be updated) |
|
|
|
The tokenizer of this model is based on [huggingface/tokenizers](https://github.com/huggingface/tokenizers) Unigram byte-fallback model. |
|
The vocabulary entries were converted from [`llm-jp-tokenizer v2.2 (50k)`](https://github.com/llm-jp/llm-jp-tokenizer/releases/tag/v2.2). |
|
Please refer to [README.md](https://github.com/llm-jp/llm-jp-tokenizer) of `llm-ja-tokenizer` for details on the vocabulary construction procedure (the pure SentencePiece training does not reproduce our vocabulary). |
|
|
|
- **Model:** Hugging Face Fast Tokenizer using Unigram byte-fallback model which requires `tokenizers>=0.14.0` |
|
- **Training algorithm:** Marging Code/English/Japanese vocabularies constructed with SentencePiece Unigram byte-fallback and reestimating scores with the EM-algorithm. |
|
- **Training data:** A subset of the datasets for model pre-training |
|
- **Vocabulary size:** 48,588 (mixed vocabulary of Japanese, English, and source code) |
|
|
|
|
|
## Datasets (To be updated) |
|
|
|
### Pre-training |
|
|
|
The models have been pre-trained using a blend of the following datasets. |
|
|
|
| Language | Dataset | Tokens| |
|
|:---:|:---:|:---:| |
|
|Japanese|[Wikipedia](https://huggingface.co/datasets/wikipedia)|1.5B |
|
||[mC4](https://huggingface.co/datasets/mc4)|136B |
|
|English|[Wikipedia](https://huggingface.co/datasets/wikipedia)|5B |
|
||[The Pile](https://huggingface.co/datasets/EleutherAI/pile)|135B |
|
|Codes|[The Stack](https://huggingface.co/datasets/bigcode/the-stack)|10B |
|
|
|
### Instruction tuning (To be updated) |
|
|
|
The models have been fine-tuned on the following datasets. |
|
|
|
| Language | Dataset | description | |
|
|:---|:---:|:---:| |
|
|Japanese|[jaster](https://github.com/llm-jp/llm-jp-eval)| An automatically transformed data from the existing Japanese NLP datasets | |
|
||[databricks-dolly-15k](https://huggingface.co/datasets/databricks/databricks-dolly-15k)| A translated one by DeepL in LLM-jp | |
|
||[OpenAssistant Conversations Dataset](https://huggingface.co/datasets/OpenAssistant/oasst1)| A translated one by DeepL in LLM-jp | |
|
|
|
|
|
## Evaluation (To be updated) |
|
|
|
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. |
|
|
|
## Risks and Limitations |
|
|
|
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. |
|
|
|
|
|
## Send Questions to |
|
|
|
llm-jp(at)nii.ac.jp |
|
|
|
|
|
## License |
|
|
|
[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) |
|
|
|
|
|
## Model Card Authors (To be updated) |
|
|
|
*The names are listed in alphabetical order.* |
|
|
|
Hirokazu Kiyomaru. |