ohcaidek/concept
0362
1---2tags:3- text-to-image4- flux5- lora6- diffusers7- template:sd-lora8- ai-toolkit9widget:10- text: somber and cinematic scene, fantasy, game digital art, a fallen knight resting11 against a gravestone in a snow-covered graveyard, the knight clad in full12 armor, grips a sword with hand, the blade buried in the snow, Snowflakes gently13 fall around him, melancholic atmosphere, background is a dark gothic castle14 looms that obscured by the swirling snow and mist, haunting beauty of a warrior's15 final rest16 output:17 url: samples/1728295187401__000005700_0.jpg18base_model: black-forest-labs/FLUX.1-dev19 20license: other21license_name: flux-1-dev-non-commercial-license22license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md23---24 25# 3rd_concept_1e-4_16_block26Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)27<Gallery />28 29## Trigger words30 31No trigger words defined.32 33## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.34 35Weights for this model are available in Safetensors format.36 37[Download](/ohcaidek/concept/tree/main) them in the Files & versions tab.38 39## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)40 41```py42from diffusers import AutoPipelineForText2Image43import torch44 45pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')46pipeline.load_lora_weights('ohcaidek/concept', weight_name='3rd_concept_1e-4_16_block.safetensors')47image = pipeline('somber and cinematic scene, fantasy, game digital art, a fallen knight resting against a gravestone in a snow-covered graveyard, the knight clad in full armor, grips a sword with hand, the blade buried in the snow, Snowflakes gently fall around him, melancholic atmosphere, background is a dark gothic castle looms that obscured by the swirling snow and mist, haunting beauty of a warrior's final rest').images[0]48image.save("my_image.png")49```50 51For 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)52 53 