ASTERIZER/LUNA-Tokenizer
067
LUNA Tokenizer
The shared tokenizer for the LUNA model family — used by both LUNA-100M and LUNA-300M.
It is the EleutherAI / Pythia-160m (GPT-NeoX) tokenizer, extracted into a standalone repository so both models — and any future LUNA variants — reference a single canonical source.
Details
Files
Usage
from transformers import AutoTokenizer
tok = AutoTokenizer.from_pretrained("ASTERIZER/LUNA-Tokenizer")
ids = tok.encode("Hello, LUNA!")
print(tok.decode(ids))