How to use GazTrab/3drenec with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("GazTrab/3drenec") prompt = "3D illustration in the style of <s0><s1>, depicting a sleek, modern workspace with the <s0><s1> logo intricately woven into the design of a futuristic computer interface. The desk is vibrant teal, matching the logo hue, surrounded by angular, geometric shapes that echo the <s0><s1> brand aesthetic. Above the workspace, holographic screens display interactive graphs and data analytics, subtly incorporating the <s0><s1> logo. The scene is enhanced by soft, ambient light, emphasizing cutting-edge technology and innovation." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!