|
--- |
|
tags: |
|
- text-to-image |
|
- flux |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
- ai-toolkit |
|
widget: |
|
- text: 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. |
|
output: |
|
url: samples/1728639798907__000003500_0.jpg |
|
- text: A green Abisko lite 3 tent pitched in a dense forest clearing. Tall pine |
|
trees surround the tent, and dappled sunlight filters through the branches, |
|
casting soft shadows on the tent's surface. Fallen leaves and moss cover the |
|
ground, adding a touch of green to the scene. |
|
output: |
|
url: samples/1728639807671__000003500_1.jpg |
|
- text: A olive-green abisko-lite-3 tent set up in an open field covered in fresh |
|
snow. The tent is surrounded by tall pine trees dusted with snow, and the |
|
sky is overcast, with light snowflakes gently falling. The tent's guy lines |
|
are staked firmly into the snow, and a few animal tracks are visible nearby. |
|
output: |
|
url: samples/1728639816434__000003500_2.jpg |
|
- text: A 'ABISKO LITE 3' tent, olive-green color, pitched on a grassy hillside, |
|
with its streamlined, tunnel-shaped design tapering down from the higher front |
|
to the lower rear for better wind resistance. The tent's extended front vestibule |
|
provides sheltered storage space, with the zippered door partially open to |
|
reveal the interior. Multiple guy lines are secured tightly to the ground, |
|
keeping the fabric taut, while arched poles maintain the tent's aerodynamic |
|
shape. The rainfly extends close to the ground for full coverage, and ventilation |
|
flaps at both the front and rear ensure optimal airflow. The surrounding grass |
|
sways gently in the breeze. |
|
output: |
|
url: samples/1728639825196__000003500_3.jpg |
|
- text: A 'Abisko lite 3' tent, olive-green color, pitched on a grassy hillside, |
|
with its streamlined, tunnel-shaped design tapering down from the higher front |
|
to the lower rear for better wind resistance. The tent's extended front vestibule |
|
provides sheltered storage space, with the zippered door partially open to |
|
reveal the interior. Multiple guy lines are secured tightly to the ground, |
|
keeping the fabric taut, while arched poles maintain the tent's aerodynamic |
|
shape. The rainfly extends close to the ground for full coverage, and ventilation |
|
flaps at both the front and rear ensure optimal airflow. The surrounding grass |
|
sways gently in the breeze. |
|
output: |
|
url: samples/1728639833958__000003500_4.jpg |
|
- text: Create a high-quality commercial image of a light blue 'Abisko Lite 3' tent |
|
set up in the middle of Times Square in New York City during the evening. |
|
The tent features a tunnel-style design with a light blue rainfly that fully |
|
covers the structure, tapering from the front to the rear for enhanced wind |
|
resistance. The extended front vestibule is closed, and the arched poles create |
|
a streamlined shape, while the rear slopes downward to optimize aerodynamics. |
|
Surround the tent with the iconic bright neon lights from the billboards, |
|
casting colorful reflections onto the tent's surface. Capture the contrast |
|
between the outdoor gear and the lively urban setting, using a combination |
|
of evening light and vibrant neon glow to emphasize the tent details and the |
|
bustling atmosphere of Times Square. |
|
output: |
|
url: samples/1728639842723__000003500_5.jpg |
|
base_model: black-forest-labs/FLUX.1-schnell |
|
instance_prompt: ABISKO LITE 3 |
|
license: apache-2.0 |
|
|
|
|
|
--- |
|
|
|
# abisko_lite_3_v2 |
|
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) |
|
<Gallery /> |
|
|
|
## Trigger words |
|
|
|
You should use `ABISKO LITE 3` to trigger the image generation. |
|
|
|
## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc. |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/Kvisten/abisko-lite-3-v2/tree/main) them in the Files & versions tab. |
|
|
|
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) |
|
|
|
```py |
|
from diffusers import AutoPipelineForText2Image |
|
import torch |
|
|
|
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-schnell', torch_dtype=torch.bfloat16).to('cuda') |
|
pipeline.load_lora_weights('Kvisten/abisko-lite-3-v2', weight_name='abisko_lite_3_v2.safetensors') |
|
image = 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] |
|
image.save("my_image.png") |
|
``` |
|
|
|
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters) |
|
|
|
|