Views
No views yet
dna-bolinas-mix-v0.9-p1B-i24-exp135-zoonomia-m5.1-bef41e, released with the A 1B standard Transformer rivals Evo 2 40B on variant effect prediction blog post.| Field | Value |
|---|---|
| Architecture | Qwen3ForCausalLM-compatible decoder-only Transformer |
| Parameters | 1,120,772,224 |
| Layers | 19 |
| Hidden / intermediate size | 1,920 / 7,680 |
| Attention heads / KV heads | 15 / 15 |
| Context | 256 tokens: one BOS token followed by up to 255 DNA bases |
| Checkpoint | Final m5.1 checkpoint, step 59,158 |
| Approximate token exposure | 166.0B nucleotide tokens over the inherited training lineage |
| Stored weight dtype | float32 |
| License | Apache-2.0 |
gs://marin-us-east5/checkpoints/dna-bolinas-mix-v0.9-p1B-i24-exp135-zoonomia-m5.1-bef41e/hf/step-59158.
The commit-pinned training script defines the experiment.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "marin-dna/marin-dna-exp135-m5.1"
4
5tokenizer = AutoTokenizer.from_pretrained(repo_id)
6model = AutoModelForCausalLM.from_pretrained(repo_id)| Token | ID |
|---|---|
[PAD] | 0 |
[UNK] | 1 |
[BOS] | 2 |
a | 3 |
c | 4 |
g | 5 |
t | 6 |
A, C, G, and T without spaces or separators. The tokenizer lowercases input and automatically prepends [BOS]; the model has no EOS token and the tokenizer does not append one. Characters outside the four canonical bases map to [UNK]. Because BOS occupies one of the 256 model positions, inputs are limited to 255 DNA bases.