Downloads · 30 days
87
19% of all-time downloads
cuio/CENO-1B-base
CENO-1B-base is a text generation model from cuio. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
CENO-1B-base is the base pretraining checkpoint of the 1B CENO DNA foundation model — a causal language model over genomic sequence built on a Nemotron-H Mamba / Attention / Mixture-of-Experts hybrid backbone (no MSA…
Downloads · 30 days
87
19% of all-time downloads
All-time downloads
454
Public
Parameters
1.3B
2.6 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors2.6 GB · 100%
From the Hugging Face model README
CENO-1B-base is the base pretraining checkpoint of the 1B CENO DNA foundation model — a causal language model over genomic sequence built on a Nemotron-H Mamba / Attention / Mixture-of-Experts hybrid backbone (no MSA inputs).
It is part of the CENO DNA foundation model family. Model code, the VEP pipeline, and a
generation demo live in the companion CENO code repository.
This checkpoint is standalone-loadable with trust_remote_code=True — the model code is
bundled here.
| Family | CENO (base) |
| Training stage | Base pretraining (stage 2) |
| Parameters | 1.3B (1302.4M) |
| Precision | bfloat16 |
model_type | ceno |
| Architecture class | CENOForCausalLM |
| Auto-map (model) | modeling_ceno.CENOForCausalLM |
| Auto-map (tokenizer) | ceno_tokenizer.CENOCharLevelTokenizer |
| Property | Value |
|---|---|
| Hidden layers | 38 |
| Hidden size | 1024 |
| Attention heads | 16 |
| Intermediate size | 4096 |
| Experts (MoE) | 8 (top-2 per token) |
| Vocabulary | 512 (byte / character-level) |
The backbone is a Mamba / Attention / Mixture-of-Experts hybrid (Nemotron-H architecture). The tokenizer is character-level, mapping DNA bases to their ASCII byte codes.
from transformers import AutoModelForCausalLM, AutoTokenizer
ckpt = "CladeTeam/CENO-1B-base"
model = AutoModelForCausalLM.from_pretrained(ckpt, trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained(ckpt, trust_remote_code=True)
ids = tokenizer.encode("ATCGATCG", return_tensors="pt")
# out = model.generate(ids, max_new_tokens=128) # needs a CUDA GPU (Mamba kernels)
The Mamba layers require CUDA kernels, so forward passes and generation need a GPU. Config, tokenizer, and weight loading are CPU-safe.
CENO-*) — genomic-sequence generation and embedding extraction;
downstream adaptation (fine-tuning, probing) for genomics tasks.CENO-P-*) — variant effect prediction (VEP) by scoring wild-type
vs. variant sequences with delta log-likelihood. See the TraitGym VEP example in the
CENO code repository.Apache-2.0. The bundled model code is derived from NVIDIA's Nemotron-H Hugging Face
implementation (Apache-2.0); the tokenizer is derived from the Arc Institute Evo2
CharLevelTokenizer (Apache-2.0). See the LICENSE and NOTICE files in this repository
for full attribution.