Evo 2: DNA language model for genome modeling and design
Foundation model for DNA sequence generation and scoring.
Learn more about Evo 2
Evo 2 is a foundation model for DNA sequence analysis that uses deep learning architectures to generate and score genomic sequences at scale. The model is available in multiple parameter sizes including a 7 billion parameter variant, and operates by learning probabilistic distributions over nucleotide sequences to enable both generative and discriminative tasks on DNA. It implements sampling strategies including temperature scaling, top-k filtering, and nucleus sampling to control the stochasticity and diversity of generated sequences. The model supports mixed-precision computation with bfloat16 tensors for memory efficiency and can be deployed on both GPU and CPU hardware depending on computational requirements. Generated outputs maintain biologically relevant properties such as GC content ratios while allowing for variant generation through configurable sampling parameters.
Extended context length
Supports up to 1 million base pair context windows, enabling analysis of large genomic regions that exceed typical sequence model capabilities.
StripedHyena 2 architecture
Built on the StripedHyena 2 architecture rather than standard transformer designs, providing alternative computational characteristics for long-context DNA modeling.
Multi-domain training data
Trained on 8.8 trillion tokens from OpenGenome2, covering sequences from all domains of life rather than limited organism sets, providing broader genomic representation.
from evo2 import Evo2
model = Evo2(model_name="evo2_7b")
prompt = "ATCGATCGATCG"
# Generate continuation of DNA sequence
generated = model.generate(prompt, max_length=100, temperature=0.8)
print(f"Generated sequence: {generated}")See how people are using Evo 2
Top in AI & ML
Related Repositories
Discover similar tools and frameworks used by developers
PaddleOCR
Multilingual OCR toolkit with document structure extraction.
DeepSeek Coder
Code language models (1B-33B parameters) supporting completion and infilling across 80+ languages.
Stable Diffusion WebUI
Web UI for Stable Diffusion enabling AI image generation and editing in browser.
Pica
Unified API platform connecting AI agents to 150+ integrations with auth and tool building.
OpenCV
Cross-platform C++ library for real-time computer vision algorithms.
Related Reading
Guides and comparisons from the Greptile content library
Choosing the Right Code Review Tool: Better Alternatives to Graphite AI
A breakdown of the best alternatives to Graphite for code reviews. Compare AI tools like Trag, open-source solutions like Gerrit, and database-focused platforms like Visual Expert.
How to ACTUALLY Think About Code Reviews: The 3-Layer Checklist
A code review checklist and best practices organized around three layers — Mechanical, Structural, and Narrative — that help any team improve code quality without slowing reviews down.
What is agentic coding? Benefits, risks, and best tools to consider
What engineering leaders need to know about agentic coding: how it differs from AI coding and vibe coding, how it works, the benefits and risks, and the tools worth evaluating.
Best Code Review Tools in 2026
The best code review tools in 2026, compared on pricing, features, deployment options, and ideal use cases for teams of any size.