Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions built-in-nodes/ClipMergeSimple.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This node specializes in merging two CLIP models based on a specified ratio, eff
|-----------|-----------|-------------|
| `clip1` | CLIP | The first CLIP model to be merged. It serves as the base model for the merging process. |
| `clip2` | CLIP | The second CLIP model to be merged. Its key patches, except for position IDs and logit scale, are applied to the first model based on the specified ratio. |
| `ratio` | FLOAT | Range `0.0 - 1.0`, determines the proportion of features from the second model to blend into the first model. A ratio of 1.0 means fully adopting the second model's features, while 0.0 retains only the first model's features. |
| `ratio` | FLOAT | Range `0.0 - 1.0`, controls the blending weight between the two CLIP models. When the value is 1.0, the output is 100% `clip1`; when it's 0.0, the output is 100% `clip2`. |

## Outputs

Expand All @@ -36,9 +36,9 @@ The node uses weighted averaging to merge the two models:

### Ratio Parameter Explained

- **ratio = 0.0**: Fully uses clip1, ignores clip2
- **ratio = 0.5**: 50% contribution from each model
- **ratio = 1.0**: Fully uses clip2, ignores clip1
- **ratio = 1.0**: Output is 100% `clip1`, fully ignores `clip2`.
- **ratio = 0.5**: Even blend — 50% contribution from each model.
- **ratio = 0.0**: Output is 100% `clip2`, fully ignores `clip1`.

## Use Cases

Expand Down
8 changes: 4 additions & 4 deletions ja/built-in-nodes/ClipMergeSimple.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ translationMismatches:
|------------|----------|------|
| `clip1` | CLIP | 統合対象となる最初の CLIP モデルです。統合処理におけるベースモデルとして機能します。 |
| `clip2` | CLIP | 統合対象となる2番目の CLIP モデルです。指定された比率に基づき、位置IDおよびロジットスケールを除くそのキーパッチが、最初のモデルに適用されます。 |
| `ratio` | FLOAT | 範囲 `0.0 - 1.0` の値で、2番目のモデルから1番目のモデルへ統合される特徴の割合を決定します。比率が `1.0` の場合、2番目のモデルの特徴を完全に採用し、`0.0` の場合は1番目のモデルの特徴のみを保持します。 |
| `ratio` | FLOAT | 範囲 `0.0 - 1.0` の値で、2つの CLIP モデルのブレンド重みを制御します。値が `1.0` の場合、出力は 100% `clip1` になります。値が `0.0` の場合、出力は 100% `clip2` になります。 |

## 出力

Expand All @@ -40,9 +40,9 @@ translationMismatches:

### `ratio` パラメーターの説明

- **`ratio = 0.0`**: `clip1` を完全に使用し、`clip2` は無視されます
- **`ratio = 0.5`**: それぞれのモデルから50%ずつ寄与します
- **`ratio = 1.0`**: `clip2` を完全に使用し、`clip1` は無視されます
- **`ratio = 1.0`**: 出力は 100% `clip1` になり、`clip2` は完全に無視されます。
- **`ratio = 0.5`**: 均等ブレンド —— 各モデルから 50% ずつ寄与します。
- **`ratio = 0.0`**: 出力は 100% `clip2` になり、`clip1` は完全に無視されます。

## 主な使用例

Expand Down
8 changes: 4 additions & 4 deletions zh/built-in-nodes/ClipMergeSimple.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mode: wide
|----------|----------|------|
| `clip1` | CLIP | 要合并的第一个CLIP模型。它作为合并过程的基础模型。 |
| `clip2` | CLIP | 要合并的第二个CLIP模型。根据指定的比例,除位置ID和对数尺度外,其关键补丁将应用于第一个模型。 |
| `比例` | FLOAT | 取值范围 `0.0 - 1.0` 确定从第二个模型融合到第一个模型中的特性比例。比例为1.0意味着完全采用第二个模型的特性,而0.0则仅保留第一个模型的特性。 |
| `比例` | FLOAT | 取值范围 `0.0 - 1.0`,控制两个 CLIP 模型的混合权重。当值为 1.0 时,输出完全为 `clip1`;当值为 0.0 时,输出完全为 `clip2`。 |

## 输出

Expand All @@ -36,9 +36,9 @@ mode: wide

### 比例 参数说明

- **比例 = 0.0**: 完全使用 clip1,忽略 clip2
- **比例 = 0.5**: 两个模型各占 50%
- **比例 = 1.0**: 完全使用 clip2,忽略 clip1
- **比例 = 1.0**: 输出完全为 `clip1`,完全忽略 `clip2`。
- **比例 = 0.5**: 均衡混合 —— 两个模型各占 50%
- **比例 = 0.0**: 输出完全为 `clip2`,完全忽略 `clip1`。

## 使用场景

Expand Down
Loading