metadata
tags:
- text-to-image
- flux
- lora
- diffusers
- transformers
- template:sd-lora
- ai-toolkit
widget:
- text: >-
lgdsgn, A moth Pokémon with glass-like wings that reflect viewers’
memories; it shatters and reforms endlessly, revealing hidden truths.
output:
url: pkmn_unvrs4.png
- text: >-
lgdsgn, A spectral porcupine Pokémon whose quills are made of ink; they
float mid-air, writing haunting poems that vanish by dawn.
output:
url: pkmn_unvrs5.png
- text: >-
lgdsgn, An Arctic fox Pokémon whose fur shifts like the Northern Lights,
leaving trails of prismatic ice crystals that melt into mist under
moonlight.
output:
url: pkmn_unvrs2.png
license: other
instance_prompt: lgdsgn
base_model:
- black-forest-labs/FLUX.1-dev
license_name: flux-1-dev-non-commercial-license
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
Model Details
Model Description
This LoRA is trained for anyone who like Pokémon.
- Developed by: [Wiro AI - ML Team]
- Shared by: Wiro AI

- Prompt
- lgdsgn, A moth Pokémon with glass-like wings that reflect viewers’ memories; it shatters and reforms endlessly, revealing hidden truths.

- Prompt
- lgdsgn, A spectral porcupine Pokémon whose quills are made of ink; they float mid-air, writing haunting poems that vanish by dawn.

- Prompt
- lgdsgn, An Arctic fox Pokémon whose fur shifts like the Northern Lights, leaving trails of prismatic ice crystals that melt into mist under moonlight.
Trigger words
You should use lgdsgn to trigger the image generation.
Civitai model link: civitai
from diffusers import FluxPipeline
import torch
pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('WiroAI/Pokemon-Universe-Flux-Dev-fp8', weight_name='pokemon-universe-flux-dev-fp8.safetensors')
image = pipeline('lgdsgn, A moth Pokémon with glass-like wings that reflect viewers’ memories; it shatters and reforms endlessly, revealing hidden truths.').images[0]
image.save("output.png")