A cute robot wearing a kimono writes calligraphy with one single brush
A cute robot wearing a kimono writes calligraphy with one single brush — Stable Diffusion XL
Model Description
japanese-stablelm-base-beta-70b is a 70B-parameter decoder-only language model based on Llama-2-70b that has been fine-tuned on a diverse collection of Japanese data, with the intent of maximizing downstream performance on Japanese language tasks.
Then start generating text with japanese-stablelm-base-beta-70b by using the following code snippet:
python
1import torch
2from transformers import AutoTokenizer, AutoModelForCausalLM
34model_name ="stabilityai/japanese-stablelm-base-beta-70b"5tokenizer = AutoTokenizer.from_pretrained(model_name)67# The next line may need to be modified depending on the environment8model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.float16, low_cpu_mem_usage=True, device_map="auto")910prompt ="""
11AI で科学研究を加速するには、
12""".strip()1314input_ids = tokenizer.encode(15 prompt,16 add_special_tokens=True,17 return_tensors="pt"18)1920# this is for reproducibility.21# feel free to change to get different result22seed =2323torch.manual_seed(seed)2425tokens = model.generate(26 input_ids.to(device=model.device),27 max_new_tokens=128,28 temperature=0.99,29 top_p=0.95,30 do_sample=True,31)3233out = tokenizer.decode(tokens[0], skip_special_tokens=True)34print(out)
We suggest playing with different generation config (top_p, repetition_penalty etc) to find the best setup for your tasks. For example, use higher temperature for roleplay task, lower temperature for reasoning.
Model Details
Model type: japanese-stablelm-base-beta-70b model is an auto-regressive language model based on the Llama2 transformer architecture.
Contact: For questions and comments about the model, please join Stable Community Japan. For future announcements / information about Stability AI models, research, and events, please follow https://twitter.com/StabilityAI_JP.
Training Dataset
Roughly 100B tokens from a mixture of the following corpora were used for continued pre-training.
The model is intended to be used by all individuals as a foundation for application-specific fine-tuning without strict limitations on commercial use.
Limitations and bias
The pre-training dataset may have contained offensive or inappropriate content even after applying data cleansing filters which can be reflected in the model generated text. We recommend users exercise reasonable caution when using these models in production systems. Do not use the model for any applications that may cause harm or distress to individuals or groups.
Authors
This model was developed by the Research & Development team at Stability AI Japan, and the development was co-led by Takuya Akiba and Meng Lee. The members of the team are as follows:
We thank Meta Research for releasing Llama 2 under an open license for others to build on.
We are grateful for the contributions of the EleutherAI Polyglot-JA team in helping us to collect a large amount of pre-training data in Japanese. Polyglot-JA members includes Hyunwoong Ko (Project Lead), Fujiki Nakamura (originally started this project when he commited to the Polyglot team), Yunho Mo, Minji Jung, KeunSeok Im, and Su-Kyeong Jang.
We are also appreciative of AI Novelist/Sta (Bit192, Inc.) and the numerous contributors from Stable Community Japan for assisting us in gathering a large amount of high-quality Japanese textual data for model training.
How to cite
@misc{JapaneseStableLMBaseBeta70B,
url={[https://huggingface.co/stabilityai/japanese-stablelm-base-beta-70b](https://huggingface.co/stabilityai/japanese-stablelm-base-beta-70b)},
title={Japanese StableLM Base Beta 70B},
author={Lee, Meng and Nakamura, Fujiki and Shing, Makoto and McCann, Paul and Akiba, Takuya and Orii, Naoki}
}