How to use from the
Use from the
Diffusers library
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline

# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("Enderchef/ICONN-i1-Artist", dtype=torch.bfloat16, device_map="cuda")

prompt = "A close-up portrait of an elderly woman with deep wrinkles, wearing traditional Tibetan clothes, looking into the camera — hyperrealistic with soft lighting."
image = pipe(prompt).images[0]

ICONN i1 Artist Model

Like ICONN 1? Well, it can generate images — This model is the legacy ICONN 1 image generation version - Introducing ICONN i1, ICONN's image generation model!

> A fantasy castle on a floating island — epic concept art

Generated Image Examples

Prompt Prompt Prompt Prompt
A fantasy castle on a floating island — epic concept art An astronaut on Mars riding a horse — sci-fi realism A serene Japanese garden in spring — watercolor style A cyberpunk city at night — cinematic lighting

Download the Model

This model is available in Safetensors format.
Download it here from the Files & versions tab.

Use ICONN i1

Ready to generate your images? Load ICONN i1 instantly with the following python code -

from diffusers import StableDiffusionPipeline, DPMSolverMultistepScheduler
import torch

pipe = StableDiffusionPipeline.from_pretrained(
    "Enderchef/ICONN-0.5-i1-imageGen",
    torch_dtype=torch.float16,
    safety_checker=None
).to("cuda")

pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)

# Put your prompt here!
prompt = "A serene Japanese garden in spring — watercolor style"

image = pipe(prompt).images[0]

image.save("output.png")
Downloads last month
13
Inference Examples
Examples
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Enderchef/ICONN-i1-Artist

Unable to build the model tree, the base model loops to the model itself. Learn more.

Space using Enderchef/ICONN-i1-Artist 1

Collection including Enderchef/ICONN-i1-Artist