Main Merge (Tensor Prism)
The pack's bread-and-butter, six ways to blend two models
- model_A
- model_B
- merged_model
If this pack has a default answer, this is it. Main Merge (Tensor Prism) is the simple, honest, whole-model merge: two models in, one ratio, six interpolation methods, one model out. No block ratios, no masks, no memory circus - just the fastest way to test whether merging two checkpoints is even worth doing before you graduate to the fancy tools.
Most CivitAI checkpoints are themselves merges of merges (the KB's checkpoint panel notes that merging is how the bulk of community models are made - fast, no training data, no GPU grind), and this node is the clean room in which to do that. It's also the right sanity baseline: if your sophisticated masked/block/spectral merge doesn't beat what a plain Main Merge at the same ratio produces, the sophistication was wasted.
How it works
model_A, model_B, merge_ratio (0 = all A, 1 = all B, default 0.5). Then pick a method from six:
linear- plain weighted average. Fast, and the source of the "everything converges to mush" problem.slerp- spherical linear interpolation, which follows the curved geometry of weight space instead of cutting straight across it. The README's recommendation for blending very different models; it's the community's go-to for avoiding the washed-out middle.cosine- cosine-curve interpolation, a softer variant of linear with smoother transitions around the middle.directional- treats the blend as a vector move in weight space; can produce sharper character shifts.frequency- blends in the frequency domain via FFT, with separatefreq_low_ratioandfreq_high_ratiodials so you can favor one parent's low-frequency (structure) or high-frequency (detail) content.stochastic- randomly decides per-tensor which parent wins, seeded byrandom_seed(42) and controlled bystochastic_prob(0.1). The wildcard option; you're basically rolling dice over which model gets each weight.
Output: merged_model (MODEL), straight into a KSampler.
The settings that matter
Only merge_ratio and method matter for day one. Keep merge_ratio between 0.3 and 0.7 - the README's own tip is to start conservative, and ratios past 0.8 are where merges turn into "slightly worse model B". Reach for slerp when the models are genuinely different, linear when they're close cousins, and leave frequency/stochastic alone until you're curious.
Installing it
Part of ComfyUI-Tensor-Prism-Node-Pack. ComfyUI Manager → search "Tensor Prism" → Install, restart. Manual:
cd ComfyUI/custom_nodes
git clone https://github.com/AstrionX/ComfyUI-Tensor-Prism-Node-Pack
No model downloads; dependencies are torch, numpy and psutil, which a stock ComfyUI already has. The README's clone URL is typo'd - use Manager or the URL above.
The honest caveat
Six methods sounds impressive; the honest version is that linear and slerp are the ones with a proven track record, and the other four are this pack's own flavor of experimentation. This is a first-time author's pack, openly "vibe-coded," with zero community corpus behind the exotic methods. The good news: Main Merge is simple enough that you can benchmark all six in an evening and keep what works for your models. That's the entire point of the node.
Inputs (8)
| Name | Type | Default | Description |
|---|---|---|---|
| model_A | MODEL | — | |
| model_B | MODEL | — | |
| merge_ratio | FLOAT | 0.500–1 | — |
| method | COMBO | 6 options: linear, slerp, cosine, directional, frequency, stochastic | |
| random_seedopt | INT | 42 | — |
| stochastic_probopt | FLOAT | 0.100–1 | — |
| freq_low_ratioopt | FLOAT | 0.500–1 | — |
| freq_high_ratioopt | FLOAT | 0.500–1 | — |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| merged_model | MODEL | — |