soloai1/fluxv3
065
myfirstfluxlorav1
Model trained with AI Toolkit by Ostris <Gallery />
Trigger words
You should use DND battle map 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 them in the Files & versions tab.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('soloai1/fluxv3', weight_name='my_first_flux_lora_v1.safetensors')
image = pipeline('A mystical top-down view of dnd battle map of an ancient arcane observatory centered around a perfectly circular stone structure with pathways extending in the four cardinal directions. A ring of glowing blue runes encircles the central hub, their eldritch script pulsing with magical energy that matches the numerous small pools of luminescent azure water scattered throughout the surrounding birch forest. The white-trunked trees with their autumnal foliage of oranges and reds create a striking contrast against the verdant ground and mystical blue elements, suggesting a place where the natural and magical worlds converge. Stone paths connect the various ritual sites and glowing fonts, forming a complex that radiates symmetry and purpose—an ideal location for spellcasting, communing with extraplanar entities, or deciphering ancient magical knowledge that has been hidden within this carefully designed arcane focus point since time immemorial.').images[0]
image.save("my_image.png")For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
