infer_kandinsky_2_controlnet_depth
About
Kandinsky 2.2 controlnet depth diffusion model.
Kandinsky 2.2 is a text-conditional diffusion model based on unCLIP and latent diffusion, composed of a transformer-based image prior model, a unet diffusion model, and a decoder.
The addition of the ControlNet depth mechanism allows the model to effectively control the process of generating images. This leads to more accurate and visually appealing outputs and opens new possibilities for text-guided image manipulation.
Note: This algorithm requires 10GB GPU RAM
- Input
- Output
🚀 Use with Ikomia API
1. Install Ikomia API
We strongly recommend using a virtual environment. If you're not sure where to start, we offer a tutorial here.
pip install ikomia
2. Create your workflow
from ikomia.dataprocess.workflow import Workflowfrom ikomia.utils.displayIO import display# Init your workflowwf = Workflow()# Add algorithmalgo = wf.add_task(name = "infer_kandinsky_2_controlnet_depth", auto_connect=True)# Runwf.run_on(url="https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/kandinskyv22/cat.png")# Display the imagedisplay(algo.get_output(0).get_image())
☀️ Use with Ikomia Studio
Ikomia Studio offers a friendly UI with the same features as the API.
-
If you haven't started using Ikomia Studio yet, download and install it from this page.
-
For additional guidance on getting started with Ikomia Studio, check out this blog post.
📝 Set algorithm parameters
- prompt (str) - default 'A robot, 4k photo' : Text prompt to guide the image generation .
- negative_prompt (str, optional) - default 'lowres, text, error, cropped, worst quality, low quality, ugly': The prompt not to guide the image generation. Ignored when not using guidance (i.e., ignored if
guidance_scale
is less than1
). - prior_num_inference_steps (int) - default '25': Number of denoising steps of the prior model (CLIP).
- prior_guidance_scale (float) - default '4.0': Higher guidance scale encourages to generate images that are closely linked to the text prompt, usually at the expense of lower image quality. (minimum: 1; maximum: 20).
- num_inference_steps (int) - default '100': The number of denoising steps. More denoising steps usually lead to a higher quality image at the expense of slower inference.
- guidance_scale (float) - default '4.0': Higher guidance scale encourages to generate images that are closely linked to the text prompt, usually at the expense of lower image quality. (minimum: 1; maximum: 20).
- height (int) - default '768: The height in pixels of the generated image.
- width (int) - default '768: The width in pixels of the generated image.
- seed (int) - default '-1': Seed value. '-1' generates a random number between 0 and 191965535.
note:"prior model" interprets and encodes the input text to understand the desired image content, while the "decoder model" translates this encoded information into the actual visual representation, effectively generating the image based on the text description.
from ikomia.dataprocess.workflow import Workflowfrom ikomia.utils.displayIO import display# Init your workflowwf = Workflow()# Add algorithmalgo = wf.add_task(name = "infer_kandinsky_2_controlnet_depth", auto_connect=True)algo.set_parameters({'prompt': 'A robot, 4k photo','negative_prompt': 'lowres, text, error, cropped, worst quality, low quality, ugly','prior_num_inference_steps': '25','prior_guidance_scale': '4.0','num_inference_steps': '100','guidance_scale': '4.0','seed': '-1','width': '768','height': '768',})# Runwf.run_on(url="https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/kandinskyv22/cat.png")# Display the imagedisplay(algo.get_output(0).get_image())
🔍 Explore algorithm outputs
Every algorithm produces specific outputs, yet they can be explored them the same way using the Ikomia API. For a more in-depth understanding of managing algorithm outputs, please refer to the documentation.
from ikomia.dataprocess.workflow import Workflowfrom ikomia.utils.displayIO import display# Init your workflowwf = Workflow()# Add algorithmalgo = wf.add_task(name = "infer_kandinsky_2_controlnet_depth", auto_connect=True)# Runwf.run_on(url="https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/kandinskyv22/cat.png")# Iterate over outputsfor output in algo.get_outputs():# Print informationprint(output)# Export it to JSONoutput.to_json()
Developer
Ikomia
License
Apache License 2.0
A permissive license whose main conditions require preservation of copyright and license notices. Contributors provide an express grant of patent rights. Licensed works, modifications, and larger works may be distributed under different terms and without source code.
Permissions | Conditions | Limitations |
---|---|---|
Commercial use | License and copyright notice | Trademark use |
Modification | State changes | Liability |
Distribution | Warranty | |
Patent use | ||
Private use |
This is not legal advice: this description is for informational purposes only and does not constitute the license itself. Provided by choosealicense.com.