How to use jonathang/carrotey-vegetable with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("jonathang/carrotey-vegetable", dtype=torch.bfloat16, device_map="cuda") prompt = "a photo of carrotey vegetable in the Acropolis" image = pipe(prompt).images[0]