How to use CiroN2022/microverse-creator 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("CiroN2022/microverse-creator") prompt = "a wooden table with a model of a house on top of it, surrounded by trees, a cassette tape, a remote, a speaker, a book, a glass, and other objects. It appears to be an amazing 3D model of an old-fashioned house, with intricate details and a unique design." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!