How to use nDimensional/Experience with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("nDimensional/Experience", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0]
Thanks for the awesome model. I love the look and the results of it. Can you also provide the Diffusers file so that I can train my custom dog into the model? A conversion of it is not possible because there are some keys missing in the ckpt file
· Sign up or log in to comment