This is a Japanese RoBERTa large model pre-trained on Japanese Wikipedia and the Japanese portion of CC-100.
This model is trained with character-level tokenization and whole word masking.
1from transformers import AutoTokenizer, AutoModelForMaskedLM
2tokenizer = AutoTokenizer.from_pretrained('ku-nlp/roberta-large-japanese-char-wwm')
3model = AutoModelForMaskedLM.from_pretrained('ku-nlp/roberta-large-japanese-char-wwm')
4
5sentence = '京都大学で自然言語処理を[MASK]する。'
6encoding = tokenizer(sentence, return_tensors='pt')
7...
You can fine-tune this model on downstream tasks.
There is no need to tokenize texts in advance, and you can give raw texts to the tokenizer.
The texts are tokenized into character-level tokens by
sentencepiece.
The vocabulary consists of 18,377 tokens including all characters that appear in the training corpus.
This model was trained on Japanese Wikipedia (as of 20220220) and the Japanese portion of CC-100. It took a month using 8-16 NVIDIA A100 GPUs.
This work was supported by Joint Usage/Research Center for Interdisciplinary Large-scale Information Infrastructures (JHPCN) through General Collaboration Project no. jh221004, "Developing a Platform for Constructing and Sharing of Large-Scale Japanese Language Models".
For training models, we used the mdx: a platform for the data-driven future.