🧬 OpenGenomeLLM-70B just released β€” State-of-the-art on GeneTuring benchmark  Β·  Download now β†’
🧬 Open Source · Apache 2.0 · by DeepCog.ai

The Genomic AI Community
Building the
Future of Medicine

The open platform where genomic AI researchers collaborate on models, datasets, and tools for variant interpretation, gene-disease associations, and precision medicine.

12+Genomic Models
42M+Training Papers
2.4MVariant Pairs
Apache 2.0License
OpenGenomeLLM-70BGenomics
classify_variant(vcf)VCF→Report
ClinVar: Pathogenic βœ“Validated

Get started in 3 lines

Download and run any OpenGenomeLLM model locally using HuggingFace Transformers. All models are Apache 2.0 licensed for research and commercial use with no restrictions.

python
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

# Load OpenGenomeLLM-70B
tokenizer = AutoTokenizer.from_pretrained(
    "deepcog-ai/OpenGenomeLLM-70B"
)
model = AutoModelForCausalLM.from_pretrained(
    "deepcog-ai/OpenGenomeLLM-70B",
    torch_dtype=torch.bfloat16,
    device_map="auto"
)

# Interpret a genomic variant
query = "Interpret BRCA1 c.5266dupC for clinical significance"
inputs = tokenizer(query, return_tensors="pt")
output = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(output[0]))

Explore by genomic task

Find the right model for your specific research or clinical workflow.

State-of-the-art on
genomic benchmarks

Evaluated on GeneTuring, ClinVar VUS classification, and Gene-Disease Association tasks against leading models.

Compare All Models β†’
Model
GeneTuring
ClinVar VUS
Gene-Disease
🧬 OpenGenomeLLM-70B
78.9%
82.4%
84.1%
πŸ”¬ OpenBioLLM-70B
71.2%
69.8%
72.6%
πŸ€– GPT-4o
68.4%
73.2%
74.1%
πŸ§ͺ GenomicLLM-7B
64.1%
81.5%
67.8%
πŸ’Š DrugDiscovery-LLM
58.2%
61.4%
63.9%

Organizations using OpenGenomeLLM

See all β†’

Join the genomic AI revolution

Create a free account to download models, contribute datasets, and collaborate with the global genomic AI community.

Sign Up Free Browse Models