Views
No views yet
CRYSTAL style to invoke the model’s unique aesthetic. It’s best to start your prompt with the trigger word, followed by descriptions of your scene, such as nature, skies, houses, roads, villages, etc.painting to your prompt, for example: CRYSTAL style painting1from diffusers import AutoPipelineForText2Image
2import torch
3pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
4pipeline.load_lora_weights('Chan-Y/flux-crystal-apple', weight_name='lora.safetensors')
5image = pipeline('CRYSTAL style, miniature world within the apple.').images[0]