Views
No views yet
ABISKO LITE 3 to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-schnell', torch_dtype=torch.bfloat16).to('cuda')
5pipeline.load_lora_weights('Kvisten/abisko-lite-3-v2', weight_name='abisko_lite_3_v2.safetensors')
6image = pipeline('A light blue abisko-lite-3 tent set up on a rocky mountain ridge, surrounded by rugged terrain and distant snow-capped peaks. The tent's guy lines are secured to nearby rocks, and the fabric flutters slightly in the breeze. A few scattered wildflowers can be seen growing between the rocks.').images[0]
7image.save("my_image.png")