Views
No views yet
| Quantization | File | Size | RAM Required | Quality |
|---|---|---|---|---|
| F16 | OmniGene-4-CPT-v2-f16.gguf | 50.6 GB | ~52 GB | Best quality |
| Q4_K_M | OmniGene-4-CPT-v2-Q4_K_M.gguf | 16 GB | ~17 GB | Recommended balance |
| Quantization | GPU | CPU + RAM |
|---|---|---|
| F16 | RTX A6000 (48GB) | 64GB+ system RAM |
| Q4_K_M | RTX 5090 (32GB) / RTX 4090 (24GB) / RTX 3090 (24GB) | 32GB+ system RAM |
pip install llama-cpp-python1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="OmniGene-4-CPT-v2-Q4_K_M.gguf",
5 n_ctx=4096,
6 n_gpu_layers=-1, # Offload all layers to GPU
7)
8
9output = llm("MKTAYIAKQRQISFVKSHFSRQLEERLGLIEVQAPILSRVGDGTQDNLSGAEK", max_tokens=100)
10print(output['choices'][0]['text'])./llama-cli -m OmniGene-4-CPT-v2-Q4_K_M.gguf -p "MKTAYIAKQRQISFVKSHFSRQLEERL" -n 100 -ngl -11# Create Modelfile
2cat > Modelfile <<EOF
3FROM ./OmniGene-4-CPT-v2-Q4_K_M.gguf
4EOF
5
6ollama create omnigene-4-cpt -f Modelfile
7ollama run omnigene-4-cptOmniGene-4-CPT-v2-Q4_K_M.gguf1@article{wang2026omnigene4,
2 title={OmniGene-4: A Unified Bio-Language MoE Model with Router-Level Interpretability},
3 author={Wang, Liang},
4 journal={bioRxiv},
5 year={2026}
6}