Browse Models
The simplest way to self-host ControlNet SD 1.5 Tile. Launch a dedicated cloud GPU server running Lab Station OS to download and serve the model using any compatible app or framework.
Download model weights for local inference. Must be used with a compatible app, notebook, or codebase. May run slowly, or not work at all, depending on your system resources, particularly GPU(s) and available VRAM.
ControlNet SD 1.5 Tile processes large images (4k/8k) by breaking them into tiles while maintaining consistency across the entire output. Implemented as a LoRA variant, it reduces model size from 4.7GB to 377MB-738MB while preserving functionality. Excels at handling image imperfections and balancing local/global details.
ControlNet SD 1.5 Tile is an experimental model in the ControlNet 1.1 family, designed specifically to work with Stable Diffusion 1.5. It shares the same underlying architecture as other ControlNet 1.0 models but features significant improvements in robustness and quality. The model's development is based on the research detailed in Adding Conditional Control to Text-to-Image Diffusion Models.
The Tile model's primary innovation lies in its ability to process very large images (4k or 8k) by diffusing individual tiles while maintaining coherence across the entire image. This approach solves a common problem where global prompts might override local tile semantics, resulting in more consistent and high-quality outputs. The model exhibits two distinct behaviors:
A notable technical feature is the implementation of a smart resampling algorithm that maintains pixel-perfect input control images regardless of the output resolution. This is especially valuable when working with manually created or carefully tuned control images, as discussed in the ControlNet Tile implementation details.
The model can be implemented through various interfaces, with the most common being the Automatic1111 ControlNet extension. For users with limited GPU resources, the model has been tested successfully on both 8GB and 6GB VRAM GPUs, with the latter requiring float16 support. Recommended command-line flags include:
--medvram-sdxl
for 8GB-16GB VRAM--lowvram
for systems with less than 8GB VRAMFor optimal performance on 8GB GPUs, users can set save_memory = True
in the configuration file. The model can be installed in either stable-diffusion-webui\extensions\sd-webui-controlnet\models
or stable-diffusion-webui\models\ControlNet
.
Within the ControlNet 1.1 family, the Tile model stands alongside several specialized variants, including:
While these models excel in their specific use cases, the Tile model distinguishes itself through its superior handling of large images and ability to maintain consistency across tiled sections. This makes it particularly valuable for high-resolution image processing and super-resolution applications.
A lighter version of the technology is available through Stability AI's Control-LoRAs, which come in Rank 256 (~738MB) and Rank 128 (~377MB) variants, significantly reducing the model size from the original 4.7GB while maintaining performance.