From ebdd11f36c83d5884ba6106c86d0ae690ba70959 Mon Sep 17 00:00:00 2001 From: linmoumou Date: Mon, 11 May 2026 18:13:13 +0800 Subject: [PATCH] Fix CLIPMergeSimple ratio documentation: 1.0 = 100% clip1, 0.0 = 100% clip2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ratio parameter works the same as ModelMergeSimple's ratio — when ratio=1.0 the output is 100% clip1, and when ratio=0.0 the output is 100% clip2. The docs previously described it backwards. Fixes #918 --- built-in-nodes/ClipMergeSimple.mdx | 8 ++++---- ja/built-in-nodes/ClipMergeSimple.mdx | 8 ++++---- zh/built-in-nodes/ClipMergeSimple.mdx | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/built-in-nodes/ClipMergeSimple.mdx b/built-in-nodes/ClipMergeSimple.mdx index ee926f122..55287cc2a 100755 --- a/built-in-nodes/ClipMergeSimple.mdx +++ b/built-in-nodes/ClipMergeSimple.mdx @@ -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 @@ -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 diff --git a/ja/built-in-nodes/ClipMergeSimple.mdx b/ja/built-in-nodes/ClipMergeSimple.mdx index d29ecb614..6bb0233ea 100755 --- a/ja/built-in-nodes/ClipMergeSimple.mdx +++ b/ja/built-in-nodes/ClipMergeSimple.mdx @@ -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` になります。 | ## 出力 @@ -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` は完全に無視されます。 ## 主な使用例 diff --git a/zh/built-in-nodes/ClipMergeSimple.mdx b/zh/built-in-nodes/ClipMergeSimple.mdx index 91416ae4f..0bcadbe81 100644 --- a/zh/built-in-nodes/ClipMergeSimple.mdx +++ b/zh/built-in-nodes/ClipMergeSimple.mdx @@ -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`。 | ## 输出 @@ -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`。 ## 使用场景