Instructions to use CladeTeam/CENO-80M-131k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CladeTeam/CENO-80M-131k with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CladeTeam/CENO-80M-131k", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("CladeTeam/CENO-80M-131k", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use CladeTeam/CENO-80M-131k with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CladeTeam/CENO-80M-131k" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CladeTeam/CENO-80M-131k", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/CladeTeam/CENO-80M-131k
- SGLang
How to use CladeTeam/CENO-80M-131k with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "CladeTeam/CENO-80M-131k" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CladeTeam/CENO-80M-131k", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "CladeTeam/CENO-80M-131k" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CladeTeam/CENO-80M-131k", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use CladeTeam/CENO-80M-131k with Docker Model Runner:
docker model run hf.co/CladeTeam/CENO-80M-131k
Configuration Parsing Warning:In UNKNOWN_FILENAME: "auto_map.AutoTokenizer" must be a string
CENO-80M-131k
CENO-80M-131k is the long-context (131k) checkpoint of the 80M 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.
Model details
| Family | CENO (base) |
| Training stage | Long-context extension (stage 3) |
| Training context length | 131,072 tokens |
| Parameters | 79.3M |
| Precision | bfloat16 |
model_type |
ceno |
| Architecture class | CENOForCausalLM |
| Auto-map (model) | modeling_ceno.CENOForCausalLM |
| Auto-map (tokenizer) | ceno_tokenizer.CENOCharLevelTokenizer |
CENO's Mamba / Attention / MoE backbone has no fixed context window. The training context length above is the sequence length this checkpoint was trained at โ not a hard limit.
max_position_embeddingsinconfig.jsonis nominal and non-restricting.
Architecture
| Property | Value |
|---|---|
| Hidden layers | 9 |
| Hidden size | 512 |
| Attention heads | 8 |
| Intermediate size | 2048 |
| 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.
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
ckpt = "CladeTeam/CENO-80M-131k"
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.
Intended use
- Base checkpoints (
CENO-*) โ genomic-sequence generation and embedding extraction; downstream adaptation (fine-tuning, probing) for genomics tasks. - MSA checkpoints (
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.
License
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.
- Downloads last month
- 352