|
--- |
|
license: other |
|
license_name: bespoke-lora-trained-license |
|
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=False |
|
tags: |
|
- text-to-image |
|
- stable-diffusion |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
- migrated |
|
- style |
|
- pokemon |
|
- toon |
|
|
|
base_model: black-forest-labs/FLUX.1-dev |
|
instance_prompt: PokIRL |
|
widget: |
|
- text: 'Rick Sanchez PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521443.jpeg |
|
- text: 'American gothic by Grant Wood PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521191.jpeg |
|
- text: 'Wonderwoman PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521260.jpeg |
|
- text: 'Elsa from frozen PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521078.jpeg |
|
- text: 'Elsa from frozen PokIRL pokemon ' |
|
|
|
output: |
|
url: >- |
|
43521161.jpeg |
|
- text: 'Elsa from frozen PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521165.jpeg |
|
- text: 'American gothic by Grant Wood PokIRL pokemon ' |
|
|
|
output: |
|
url: >- |
|
43521193.jpeg |
|
- text: 'American gothic by Grant Wood PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521195.jpeg |
|
- text: 'Shrek and Olaf on a frozen field PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521220.jpeg |
|
- text: 'Shrek and Olaf on a frozen field PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521244.jpeg |
|
- text: 'Marge Simpson PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521208.jpeg |
|
- text: 'Snoop Dogg PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521364.jpeg |
|
- text: 'The girl with a pearl earring PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521264.jpeg |
|
- text: 'A psychedelic painting of a PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521339.jpeg |
|
- text: 'A socially awkward potato PokIRL pokemon ' |
|
|
|
output: |
|
url: >- |
|
43521309.jpeg |
|
- text: 'A crazy clown PokIRL ' |
|
|
|
output: |
|
url: >- |
|
43521442.jpeg |
|
|
|
--- |
|
|
|
# PokIRL [Flux] |
|
|
|
<Gallery /> |
|
|
|
|
|
|
|
([CivitAI](https://civitai.com/models/1004782)) |
|
|
|
## Model description |
|
|
|
<h2 id="real-life-pokemon-like-mesh-up-ur5dcp0pb">Real-Life / Pokemon-Like mesh-up</h2><p>For the trigger <strong><em>PokIRL </em></strong>use a LoRA<strong> weight scale of ~1.25-1.50</strong></p><p>For the trigger <strong><em>PokIRL pokemon</em> </strong>use a LoRA<strong> weight scale of ~0.75-1.00</strong></p><p>For example, same prompt ("Elsa from frozen") same seed (7782) followed by these trigger words at different scales</p><p><img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/474d86b8-c207-43e8-a3bc-fe80ee584060/width=525/474d86b8-c207-43e8-a3bc-fe80ee584060.jpeg" />This LoRA was Trained with <a target="_blank" rel="ugc" href="https://www.astria.ai/">https://www.astria.ai/</a></p> |
|
|
|
## Trigger words |
|
You should use `PokIRL`, `PokIRL pokemon` to trigger the image generation. |
|
|
|
|
|
## Download model |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/Norod78/pokirl-flux/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 |
|
|
|
device = "cuda" if torch.cuda.is_available() else "cpu" |
|
|
|
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device) |
|
pipeline.load_lora_weights('Norod78/pokirl-flux', weight_name='Flux_PokIRL_Pokemon_LoRA_1855673.safetensors') |
|
image = pipeline('A crazy clown PokIRL ').images[0] |
|
``` |
|
|
|
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) |
|
|
|
|