japanese-gpt-1b This repository provides a 1.3B-parameter Japanese GPT model. The model was trained by rinna Co., Ltd. How to use the model import torch from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("rinna/japanese-gpt-1b", use_fast=False) model = AutoModelForCausalLM.from_pretrained("rinna/japanese-gpt-1b") if torch.cuda.is_available(): mod