AhmetTek41/logo
Viewer • Updated • 1.47k • 3
How to use AhmetTek41/kandinskytest with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("AhmetTek41/kandinskytest", dtype=torch.bfloat16, device_map="cuda")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]This pipeline was finetuned from kandinsky-community/kandinsky-2-2-decoder on the AhmetTek41/logo dataset. Below are some example images generated with the finetuned pipeline using the following prompts: ['A logo for a zero waste club featuring a simple image of a closed loop of arrows, with each arrow made from different recyclable materials like paper, plastic, and metal.']:
You can use the pipeline like so:
from diffusers import DiffusionPipeline
import torch
pipeline = AutoPipelineForText2Image.from_pretrained("AhmetTek41/output", torch_dtype=torch.float16)
prompt = "A logo for a zero waste club featuring a simple image of a closed loop of arrows, with each arrow made from different recyclable materials like paper, plastic, and metal."
image = pipeline(prompt).images[0]
image.save("my_image.png")
These are the key hyperparameters used during training:
More information on all the CLI arguments and the environment are available on your wandb run page.
Base model
kandinsky-community/kandinsky-2-2-decoder