npx skills add ...
npx skills add firecrawl/ai-research-skills --skill model-merging
Merge multiple fine-tuned models using mergekit to combine capabilities without retraining. Use when creating specialized models by blending domain-specific expertise (math + coding + chat), improving performance beyond single models, or experimenting rapidly with model variants. Covers SLERP, TIES-Merging, DARE, Task Arithmetic, linear merging, and production deployment strategies.
npx skills add firecrawl/ai-research-skills --skill model-merging
Use Model Merging when you need to:
Success Stories: Marcoro14-7B-slerp (best on Open LLM Leaderboard 02/2024), many top HuggingFace models use merging
Tools: mergekit (Arcee AI), LazyMergekit, Model Soup
Linear (Model Soup)
SLERP (Spherical Linear Interpolation)
Task Arithmetic
TIES-Merging
DARE (Drop And REscale)
Best for: Simple model combinations, equal weighting
Best for: Two models, smooth interpolation
Layer-specific SLERP:
Best for: Combining specialized skills
Best for: Many models, resolving conflicts
Best for: Reducing redundancy
Fix: Only merge models with same architecture
Fix: Use more balanced weights (0.3-0.7 range)
Fix: Always benchmark before deploying
references/methods.md - Deep dive into merge algorithmsreferences/examples.md - Real-world merge configurationsreferences/evaluation.md - Benchmarking and testing strategies