A collection of custom nodes for ComfyUI focused on model merging and style adaptation.
A node that automatically fetches reference images from Same.Energy based on style prompts and applies them using IPAdapter.
- Automatically searches and retrieves reference images based on style descriptions
- Integrates with IPAdapter for style transfer
- Handles cleanup of temporary images
- Supports negative images and attention masks
- Built-in error handling for API requests
model: The base model to apply the style toipadapter: IPAdapter modelclip_vision: CLIP Vision modelstyle_prompt: Description of the desired style (e.g., "studio ghibli style")weight: Strength of the style application (0.0 to 5.0)start_at: Starting point for style application (0.0 to 1.0)end_at: Ending point for style application (0.0 to 1.0)image_negative(optional): Negative reference imageattn_mask(optional): Attention mask for localized application
A sophisticated model merging node designed specifically for SDXL models, using block-wise merging strategies.
- Intelligent block-based model merging
- Preserves non-UNet components
- Supports complex merging patterns
- Memory efficient processing
model1: First SDXL modelmodel2: Second SDXL model
The node uses a predefined range pattern that alternates between models across different blocks:
ranges = [
(0, 16, 1.0, 0.0), # Model 1 only
(8, 24, 0.0, 1.0), # Model 2 only
(17, 32, 1.0, 0.0), # Model 1 only
# ... and so on
]- Clone this repository into your ComfyUI custom nodes directory:
cd ComfyUI/custom_nodes
git clone https://github.com/datacte/ComfyUI-DataVoid-nodes.git