This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! Edit on GitHubThe CLIPAdd node combines two CLIP models by merging their key patches. It creates a copy of the first CLIP model and then adds most of the key patches from the second model, excluding position IDs and logit scale parameters. This allows you to blend features from different CLIP models while preserving the structure of the first model.
Inputs
| Parameter | Data Type | Input Type | Default | Range | Description |
|---|---|---|---|---|---|
clip1 | CLIP | Required | - | - | The primary CLIP model that will be used as the base for merging |
clip2 | CLIP | Required | - | - | The secondary CLIP model that provides additional patches to be added |
Outputs
| Output Name | Data Type | Description |
|---|---|---|
CLIP | CLIP | Returns a merged CLIP model combining features from both input models |