llama.cpp commit used for conversion:
27aef3d
llama.cpp build used for quantization:
b8983
Current quants are static(non-imatrix), if you want imatrix quants, please open a discussion.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4tok = AutoTokenizer.from_pretrained(
5 "FINAL-Bench/Darwin-28B-Opus",
6 trust_remote_code=True,
7)
8model = AutoModelForCausalLM.from_pretrained(
9 "FINAL-Bench/Darwin-28B-Opus",
10 torch_dtype=torch.bfloat16,
11 device_map="auto",
12 trust_remote_code=True,
13)
14
15messages = [
16 {"role": "user",
17 "content": "Solve: If f(x) = x³ − 3x + 2, find all critical points and classify them."}
18]
19text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
20inputs = tok(text, return_tensors="pt").to(model.device)
21outputs = model.generate(**inputs, max_new_tokens=2048, do_sample=False)
22print(tok.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))
Reference implementation is provided in the Darwin-series evaluation harness.
1@misc{darwin28b_opus_2026,
2 title = {Darwin-28B-Opus: Evolutionary Merging of Qwen3.6-27B with Claude-Opus-Distilled Reasoning},
3 author = {FINAL-Bench / Darwin Research Team},
4 year = {2026},
5 howpublished = {\url{https://huggingface.co/FINAL-Bench/Darwin-28B-Opus}},
6 note = {Darwin V7 · Mother-centric Ratio Interpolation merge · 88.89 % GPQA Diamond (3-stage)}
7}