llm-jp/llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1

Model

llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1

2

5 commits

7 linked in READMEs

updated Feb 7, 2024

See the code

README

llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1

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)

Required Libraries and Their Versions

  • torch>=2.0.0
  • transformers>=4.34.0
  • tokenizers>=0.14.0
  • accelerate==0.23.0

Usage

import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("llm-jp/llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1")
model = AutoModelForCausalLM.from_pretrained("llm-jp/llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1", device_map="auto", torch_dtype=torch.float16)
text = "δ»₯下は、タスクをθͺ¬ζ˜Žγ™γ‚‹ζŒ‡η€Ίγ§γ™γ€‚θ¦ζ±‚γ‚’ι©εˆ‡γ«ζΊ€γŸγ™εΏœη­”γ‚’ζ›Έγγͺさい。\n\n### ζŒ‡η€Ί:\n{instruction}\n\n### εΏœη­”:\n".format(instruction="θ‡ͺ焢言θͺžε‡¦η†γ¨γ―何か")
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=512,
        do_sample=True,
        top_p=0.95,
        temperature=0.7,
        repetition_penalty=1.1,
    )[0]
print(tokenizer.decode(output))

Model Details

  • Model type: Transformer-based Language Model
  • Total seen tokens: 300B
ModelParamsLayersHidden sizeHeadsContext length
13b model13b405120402048
1.3b model1.3b242048162048

Training

Tokenizer

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.

  • Model: Hugging Face Fast Tokenizer using Unigram byte-fallback model which requires tokenizers>=0.14.0
  • Training algorithm: SentencePiece Unigram byte-fallback
  • Training data: A subset of the datasets for model pre-training
  • Vocabulary size: 50,570 (mixed vocabulary of Japanese, English, and source code)

Datasets

Pre-training

The models have been pre-trained using a blend of the following datasets.

LanguageDatasetTokens
JapaneseWikipedia1.5B
mC4136B
EnglishWikipedia5B
The Pile135B
CodesThe Stack10B

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.

Instruction tuning

The models have been fine-tuned on the following datasets.

LanguageDatasetdescription
JapanesejasterAn automatically transformed data from the existing Japanese NLP datasets
Englishdatabricks-dolly-15k-
Japanesedatabricks-dolly-15k-jaA translated one by DeepL in LLM-jp
Englishoasst1-21k-enEnglish subset of oasst1 dataset
Japaneseoasst1-21k-jaA translated one by DeepL in LLM-jp
Japaneseichikara_003_001ichikara-instruction dataset (ver.003-001)
Japanesehh-rlhf-12k-jaA translated one by DeepL in LLM-jp

Evaluation

You can view the evaluation results of several LLMs on this leaderboard. We used 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

Model Card Authors

The names are listed in alphabetical order.

Hirokazu Kiyomaru, Hiroshi Matsuda, Jun Suzuki, Namgi Han, Saku Sugawara, Shota Sasaki, Shuhei Kurita, Taishi Nakamura, Takashi Kodama, Takumi Okamoto.

gpt2
safetensors
text-generation
text-generation-inference
transformers

Contributors

Taka008

5 commits

llm-jp/llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1

Model

llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1

2

5 commits

7 linked in READMEs

updated Feb 7, 2024

See the code

README

llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1

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)

Required Libraries and Their Versions

  • torch>=2.0.0
  • transformers>=4.34.0
  • tokenizers>=0.14.0
  • accelerate==0.23.0

Usage

import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("llm-jp/llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1")
model = AutoModelForCausalLM.from_pretrained("llm-jp/llm-jp-13b-instruct-full-dolly_en-dolly_ja-ichikara_003_001-oasst_en-oasst_ja-v1.1", device_map="auto", torch_dtype=torch.float16)
text = "δ»₯下は、タスクをθͺ¬ζ˜Žγ™γ‚‹ζŒ‡η€Ίγ§γ™γ€‚θ¦ζ±‚γ‚’ι©εˆ‡γ«ζΊ€γŸγ™εΏœη­”γ‚’ζ›Έγγͺさい。\n\n### ζŒ‡η€Ί:\n{instruction}\n\n### εΏœη­”:\n".format(instruction="θ‡ͺ焢言θͺžε‡¦η†γ¨γ―何か")
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=512,
        do_sample=True,
        top_p=0.95,
        temperature=0.7,
        repetition_penalty=1.1,
    )[0]
print(tokenizer.decode(output))

Model Details

  • Model type: Transformer-based Language Model
  • Total seen tokens: 300B
ModelParamsLayersHidden sizeHeadsContext length
13b model13b405120402048
1.3b model1.3b242048162048

Training

Tokenizer

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.

  • Model: Hugging Face Fast Tokenizer using Unigram byte-fallback model which requires tokenizers>=0.14.0
  • Training algorithm: SentencePiece Unigram byte-fallback
  • Training data: A subset of the datasets for model pre-training
  • Vocabulary size: 50,570 (mixed vocabulary of Japanese, English, and source code)

Datasets

Pre-training

The models have been pre-trained using a blend of the following datasets.

LanguageDatasetTokens
JapaneseWikipedia1.5B
mC4136B
EnglishWikipedia5B
The Pile135B
CodesThe Stack10B

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.

Instruction tuning

The models have been fine-tuned on the following datasets.

LanguageDatasetdescription
JapanesejasterAn automatically transformed data from the existing Japanese NLP datasets
Englishdatabricks-dolly-15k-
Japanesedatabricks-dolly-15k-jaA translated one by DeepL in LLM-jp
Englishoasst1-21k-enEnglish subset of oasst1 dataset
Japaneseoasst1-21k-jaA translated one by DeepL in LLM-jp
Japaneseichikara_003_001ichikara-instruction dataset (ver.003-001)
Japanesehh-rlhf-12k-jaA translated one by DeepL in LLM-jp

Evaluation

You can view the evaluation results of several LLMs on this leaderboard. We used 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

Model Card Authors

The names are listed in alphabetical order.

Hirokazu Kiyomaru, Hiroshi Matsuda, Jun Suzuki, Namgi Han, Saku Sugawara, Shota Sasaki, Shuhei Kurita, Taishi Nakamura, Takashi Kodama, Takumi Okamoto.

gpt2
safetensors
text-generation
text-generation-inference
transformers

Contributors

Taka008

5 commits