Answer first
Multi-parent merging turns model breeding from a pairwise experiment into a portfolio search. Instead of asking whether parent A and parent B can be blended, the lab asks which compatible set of parents, adapter deltas, layer choices, and weights creates the best descendant for a specific niche.
Compatibility comes first
A parameter-level merge should start only when parents share the same base family, tensor schema, tokenizer contract, and artifact identity rules. When those fields do not match, the right constructive path is usually distillation, routing, or a new student model rather than raw parameter mixing.
The workflow
- Select a compatible parent pool.
- Normalize metadata into a shared Genome record.
- Generate candidate merge recipes.
- Score each candidate on utility, cost, latency, local-fit, and novelty.
- Preserve a small archive of diverse high performers.
- Emit a release packet only for candidates with a clear scope and rollback target.
PROCEDURE n_way_merge(parent_pool, niche_contract)
compatible <- FILTER(parent_pool, SAME_BASE_AND_TOKENIZER)
recipes <- SAMPLE_MERGE_RECIPES(compatible, operators = [average, sign_merge, layer_mix])
candidates <- []
FOR recipe IN recipes
child <- APPLY_RECIPE(recipe)
child.genome <- RECORD_PARENTS_OPERATOR_AND_WEIGHTS(recipe)
child.fitness <- EVALUATE(child, niche_contract)
candidates.ADD(child)
END FOR
archive <- QUALITY_DIVERSITY_SELECT(candidates, descriptor = niche_contract.behavior_descriptor)
RETURN archive
END PROCEDUREWhy this belongs in ModelBreeder
The source reports repeatedly point toward model soups, LoRA/adapters, task vectors, evolutionary model merging, novelty search, and Quality-Diversity archives. This workflow turns those reports into a builder sequence: choose parents, make descendants, score the descendants, keep diversity, and promote only useful artifacts.
Source reports used for this guide
These reports are preserved verbatim in the site archive. The guide above is an editorial synthesis and may narrow, qualify, or reorganize claims from the source material.