DictaBERT-large-char: A Character-Level BERT-Large model for Hebrew.
DictaBERT-large-char is a BERT-style language model for Hebrew, based on the BERT-Large architecture with a character level tokenizer.
This model is a BERT-Large adaptation of our BERT-Base Hebrew Character model (https://huggingface.co/dicta-il/dictabert-char), released in our 2025 W-NUT paper: Avi Shmidman and Shaltiel Shmidman, "Restoring Missing Spaces in Scraped Hebrew Social Media", The 10th Workshop on Noisy and User-generated Text (W-NUT), 2025
The model is pretrained with the masked-language-modeling objective, on a character basis. For a fine-tuned version of this model which is trained to produce Hebrew diacritization (nikud), see: https://huggingface.co/dicta-il/dictabert-large-char-menaked
Sample usage:
from transformers import AutoModelForMaskedLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained('dicta-il/dictabert-large-char')
model = AutoModelForMaskedLM.from_pretrained('dicta-il/dictabert-large-char')
model.eval()
sentence = '讘砖谞转 1948 讛砖诇讬诐 讗驻专讬诐 拽讬砖讜谉 讗转 诪讞拽专讜 讘驻讬住讜诇 诪转讻转 讜讘[MASK]讜诇讚讜转 讛讗诪谞讜转 讜讛讞诇 诇驻专住诐 诪讗诪专讬诐 讛讜诪讜专讬住讟讬讬诐'
output = model(tokenizer.encode(sentence, return_tensors='pt'))
# the [MASK] is the 52nd token (including [CLS])
import torch
top_arg = torch.argmax(output.logits[0, 52, :])
print(tokenizer.convert_ids_to_tokens([top_arg])) # should print ['转']
Citation
If you use DictaBERT-char in your research, please cite Restoring Missing Spaces in Scraped Hebrew Social Media
BibTeX:
@inproceedings{shmidman2025restoring,
author = {Avi Shmidman and Shaltiel Shmidman},
title = {Restoring Missing Spaces in Scraped Hebrew Social Media},
booktitle = {The 10th Workshop on Noisy and User-generated Text (W-NUT)},
year = {2025}
}
License
This work is licensed under a Creative Commons Attribution 4.0 International License.
- Downloads last month
- 7