neonforestmist/GPT_Watercolor_Anime_Style_Images
Viewer • Updated • 120
How to use neonforestmist/clover-image-tiny-watercolor-anime-lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("neonforestmist/Clover-Image-Tiny", torch_dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("neonforestmist/clover-image-tiny-watercolor-anime-lora")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]A rank-16 style LoRA trained on
neonforestmist/GPT_Watercolor_Anime_Style_Images
for neonforestmist/Clover-Image-Tiny.
Use the prompt trigger watercolor anime.
import torch
from diffusers import DiffusionPipeline
pipe = DiffusionPipeline.from_pretrained(
"neonforestmist/Clover-Image-Tiny",
torch_dtype=torch.float16,
).to("cuda")
pipe.load_lora_weights(
"neonforestmist/clover-image-tiny-watercolor-anime-lora"
)
image = pipe(
"watercolor anime, a small blue cat beside a quiet garden stream",
num_inference_steps=20,
guidance_scale=7.5,
).images[0]
63b0e9f6be9c00888ff464f342a9ef052bf76681a08ad49bc28e9cebd704fd1010846357220c5c5dtrain_text_to_image_lora.pyThe dataset revision embeds each image in its Parquet row so the exact
training input remains portable in remote jobs. The reproducible pinned-data
job configuration is included in the Clover source repository under
training/.
These adapter weights are a derivative of Clover Image Tiny and use the CreativeML Open RAIL-M license. The training dataset is Apache-2.0. Generated content can inherit limitations and biases from the base checkpoint and training data; review outputs before use.