dnagpt / OmniGene-4-SFT-v3-4bit

huggingface.co
Total runs: 10
24-hour runs: 0
7-day runs: 5
30-day runs: 6
Model's Last Updated: May 14 2026

Introduction of OmniGene-4-SFT-v3-4bit

Model Details of OmniGene-4-SFT-v3-4bit

OmniGene-4-SFT-v3-4bit

Instruction-tuned model with automatic 4-bit quantization for RTX 5090 (32GB)

This model automatically quantizes to 4-bit when loaded, requiring only ~13GB GPU memory.

Model Description

OmniGene-4-SFT-v3-4bit is the final instruction-tuned biological foundation model with:

  • Base : Gemma-4-26B-A4B-Instruct + Bio CPT + Bio SFT
  • Vocabulary : 290,048 tokens
  • SFT data : 199,576 instruction examples across 8 task families
  • Storage : BF16 (~49 GB, 32 shards of ~1.5GB each)
  • Runtime : Automatic 4-bit quantization (~13GB GPU memory)
Performance
Benchmark Accuracy
Standard Homology 99.95% (6,000 pairs)
Remote Homology 59.50% (2,000 pairs)
BixBench Knowledge 93.66%

vs. ESM-2 (650M) : OmniGene-4 59.5% vs ESM-2 50.5% (+9 pp on same 2,000 pairs)

Quick Start
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

# Load model (automatically quantizes to 4-bit)
model = AutoModelForCausalLM.from_pretrained(
    "dnagpt/OmniGene-4-SFT-v3-4bit",
    device_map="auto",  # Automatically applies quantization_config.json
)
tokenizer = AutoTokenizer.from_pretrained("dnagpt/OmniGene-4-SFT-v3-4bit")

# Example: Protein homology detection
prompt = """### Instruction:
Determine if the two protein sequences below are structurally related (homologous).

### Sequence 1:
MKTAYIAKQRQISFVKSHFSRQLEERLGLIEVQAPILSRVGDGTQDNLSGAEKAVQVKVKALPDAQFEVVHSLAKWKRQTLGQHDFSAGEGLYTHMKALRPDEDRLSPLHSVYVDQWDWERVMGDGERQFSTLKSTVEAIWAGIKATEAAVSEEFGLAPFLPDQIHFVHSQELLSRYPDLDAKGRERAIAKDLGAVFLVGIGGKLSDGHRHDVRAPDYDDWSTPSELGHAGLNGDILVWNPVLEDAFELSSMGIRVDADTLKHQLALTGDEDRLELEWHQALLRGEMPQTIGGGIGQSRLTMLLLQLPHIGQVQAGVWPAAVRESVPSLL

### Sequence 2:
MKKFDRGEQVVKVKALPQAQFEEVHSLAKWKRQTLGQHDFSAGEGLYTHMKALRPDEDRLSPLHSVYVDQWDWERVMGDGERQFSTLKSTVEAIWAGIKATEAAVSEEFGLAPFLPDQIHFVHSQELLSRYPDLDAKGRERAIAKDLGAVFLVGIGGKLSDGHRHDVRAPDYDDWSTPSELGHAGLNGDILVWNPVLEDAFELSSMGIRVDADTLKHQLALTGDEDRLELEWHQALLRGEMPQTIGGGIGQSRLTMLLLQLPHIGQVQAGVWPAAVRESVPSLL

### Answer:
"""

inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=5, do_sample=False)
answer = tokenizer.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True)
print(answer)  # Expected: "Yes" or "No"
Hardware Requirements
  • GPU Memory : ~13-15GB (after automatic 4-bit quantization)
  • Recommended : RTX 5090 (32GB), RTX 4090 (24GB), or better
  • Minimum : RTX 3090 (24GB)
Quantization Details

This model uses bitsandbytes NF4 quantization with double quantization:

  • Method : NF4 (Normal Float 4-bit)
  • Compute dtype : bfloat16
  • Double quantization : Yes
  • Quality : Minimal accuracy loss compared to BF16

The quantization happens automatically when you load the model thanks to the included quantization_config.json .

Download Size vs Runtime Size
  • Download : ~49GB (BF16 weights, 32 shards)
  • Disk : ~49GB
  • GPU Memory : ~13GB (after automatic quantization)

The model is stored in BF16 for maximum quality, then quantized to 4-bit at load time.

Supported Tasks

The model is instruction-tuned on 8 task families:

Task Examples Proportion
Protein homology 49,894 25.0%
Literature (UniProtQA) 39,915 20.0%
Mutation (MutaDescribe) 29,936 15.0%
Cell biology 29,936 15.0%
Molecule (SMILES) 25,945 13.0%
Structure (3D) 19,958 10.0%
DNA homology 3,992 2.0%
Example Tasks
1. Protein Homology Detection
prompt = """### Instruction:
Determine if the two protein sequences below are structurally related (homologous).

### Sequence 1:
[protein sequence 1]

### Sequence 2:
[protein sequence 2]

### Answer:
"""
2. Protein Function Prediction
prompt = """### Instruction:
Predict the biological function of the following protein sequence.

### Protein Sequence:
[protein sequence]

### Answer:
"""
3. Mutation Effect Prediction
prompt = """### Instruction:
Describe the effect of the mutation on protein function.

### Wild-type:
[wild-type sequence]

### Mutant:
[mutant sequence]

### Answer:
"""
4. Cell Type Identification
prompt = """### Instruction:
Identify the cell type based on the gene expression profile.

### Gene Expression:
CD4: high, CD8: low, IL2: high

### Answer:
"""
5. SMILES to Properties
prompt = """### Instruction:
Predict the drug-likeness of the following molecule.

### SMILES:
CC(C)Cc1ccc(cc1)C(C)C(O)=O

### Answer:
"""
Model Architecture
  • Layers : 30 transformer layers
  • Experts : 128 experts per layer (top-8 routing)
  • Hidden size : 2816
  • Attention heads : 22
  • Active parameters : ~3.8B per token
  • Total parameters : ~26B
Other Versions
Citation
@article{wang2026omnigene4,
  title={OmniGene-4: A Unified Bio-Language MoE Model with Router-Level Interpretability},
  author={Wang, Liang},
  journal={bioRxiv},
  year={2026}
}
Paper

Full paper: https://github.com/maris205/omnigene4

License

Apache 2.0

Contact

Liang Wang ( [email protected] )
School of Artificial Intelligence and Automation
Huazhong University of Science and Technology

Runs of dnagpt OmniGene-4-SFT-v3-4bit on huggingface.co

10
Total runs
0
24-hour runs
1
3-day runs
5
7-day runs
6
30-day runs

More Information About OmniGene-4-SFT-v3-4bit huggingface.co Model

OmniGene-4-SFT-v3-4bit huggingface.co

OmniGene-4-SFT-v3-4bit huggingface.co is an AI model on huggingface.co that provides OmniGene-4-SFT-v3-4bit's model effect (), which can be used instantly with this dnagpt OmniGene-4-SFT-v3-4bit model. huggingface.co supports a free trial of the OmniGene-4-SFT-v3-4bit model, and also provides paid use of the OmniGene-4-SFT-v3-4bit. Support call OmniGene-4-SFT-v3-4bit model through api, including Node.js, Python, http.

OmniGene-4-SFT-v3-4bit huggingface.co Url

https://huggingface.co/dnagpt/OmniGene-4-SFT-v3-4bit

dnagpt OmniGene-4-SFT-v3-4bit online free

OmniGene-4-SFT-v3-4bit huggingface.co is an online trial and call api platform, which integrates OmniGene-4-SFT-v3-4bit's modeling effects, including api services, and provides a free online trial of OmniGene-4-SFT-v3-4bit, you can try OmniGene-4-SFT-v3-4bit online for free by clicking the link below.

dnagpt OmniGene-4-SFT-v3-4bit online free url in huggingface.co:

https://huggingface.co/dnagpt/OmniGene-4-SFT-v3-4bit

OmniGene-4-SFT-v3-4bit install

OmniGene-4-SFT-v3-4bit is an open source model from GitHub that offers a free installation service, and any user can find OmniGene-4-SFT-v3-4bit on GitHub to install. At the same time, huggingface.co provides the effect of OmniGene-4-SFT-v3-4bit install, users can directly use OmniGene-4-SFT-v3-4bit installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

OmniGene-4-SFT-v3-4bit install url in huggingface.co:

https://huggingface.co/dnagpt/OmniGene-4-SFT-v3-4bit

Url of OmniGene-4-SFT-v3-4bit

OmniGene-4-SFT-v3-4bit huggingface.co Url

Provider of OmniGene-4-SFT-v3-4bit huggingface.co

dnagpt
ORGANIZATIONS

Other API from dnagpt

huggingface.co

Total runs: 41
Run Growth: -87
Growth Rate: -228.95%
Updated:August 06 2023
huggingface.co

Total runs: 31
Run Growth: 15
Growth Rate: 48.39%
Updated:February 18 2025
huggingface.co

Total runs: 28
Run Growth: 25
Growth Rate: 89.29%
Updated:October 31 2024
huggingface.co

Total runs: 25
Run Growth: 19
Growth Rate: 76.00%
Updated:December 30 2024
huggingface.co

Total runs: 22
Run Growth: 16
Growth Rate: 72.73%
Updated:October 19 2024
huggingface.co

Total runs: 17
Run Growth: 12
Growth Rate: 70.59%
Updated:February 11 2025
huggingface.co

Total runs: 15
Run Growth: 10
Growth Rate: 66.67%
Updated:January 03 2025
huggingface.co

Total runs: 15
Run Growth: 9
Growth Rate: 60.00%
Updated:November 30 2024
huggingface.co

Total runs: 13
Run Growth: 7
Growth Rate: 53.85%
Updated:January 03 2025
huggingface.co

Total runs: 12
Run Growth: 6
Growth Rate: 50.00%
Updated:September 19 2025
huggingface.co

Total runs: 11
Run Growth: 5
Growth Rate: 45.45%
Updated:November 30 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 20 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:September 05 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 04 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:October 12 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 24 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:March 03 2025