How to use strangerzonehf/CMS-3D-Art with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("strangerzonehf/CMS-3D-Art") prompt = "CMS 3D Art, Captured at eye-level on a vibrant purple backdrop, a medium-sized figurine of a cartoon character, dressed in a blue sweater, black shorts, and black and white sneakers. The figurine is holding a gray cup with a white straw in it, and a green bag with yellow smiley faces on it. The characters outfit is adorned with a black strap, a white tag, and green socks with white stripes. The figures eyes are blue, and he has a white hat on his head. The background is a soft lavender shade, adding a pop of color to the scene." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!