Tiamat
Collection
Byte Level Baby Dragon Hathling Model Family • 1 item • Updated
Tiamat-base is a small byte-level Baby Dragon Hatchling-style language model proof of concept.
This is a custom PyTorch checkpoint, not a Hugging Face Transformers checkpoint. The repository includes the model implementation and inference script used to load it.
tiamat-base-step240000-inference.pt24000050,462,7200-255n_layer: 6
n_embd: 256
n_head: 4
n_neuron: 65536
vocab_size: 256
rope_theta: 65536
state_decay: 0.995
state_clip: 2.0
attention_chunk_size: 64
Clone or download this repository, install requirements, then run:
python infer.py \
--checkpoint tiamat-base-step240000-inference.pt \
--prompt "In this chapter, we describe " \
--max-new-tokens 300 \
--temperature 0.8 \
--top-k 40
Greedy decoding is supported with:
python infer.py \
--checkpoint tiamat-base-step240000-inference.pt \
--prompt "In this chapter, we describe " \
--max-new-tokens 200 \
--temperature 0.0
This is an early base checkpoint intended for experimentation. It can produce mostly valid byte-level English-like continuations, but it is not instruction-tuned and should not be treated as reliable.
Later Tiamat fine-tuned checkpoints may use richer datasets and may add an explicit EOS token, which would change the vocabulary size and checkpoint compatibility.