How to use strangerzonehf/Flux-Material-Glass-Cube 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/Flux-Material-Glass-Cube") prompt = "Glass Cube, a clear cube-shaped glass block is adorned with a chrome-plated metal bar nailed to the side of it. The bar is positioned in the center of the block, with the words Na Sodium 11 written below it in a bold black font. The background is a stark white, creating a stark contrast to the cube." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!