flux_lora_meme_v2 / README.md
longnthgmedia's picture
Upload folder using huggingface_hub
2151b49 verified
---
tags:
- text-to-image
- flux
- lora
- diffusers
- template:sd-lora
- ai-toolkit
widget:
- text: A surprised or shocked Shiba Inu, sitting at a desk with its paws on a keyboard.
Its wide eyes and open mouth convey an expression of intense surprise or panic,
as if reacting to something unexpected on the computer screen. The background
features a colorful, abstract painting reminiscent of 'The Scream' by Edvard
Munch, adding to the overall sense of dramatic tension. The combination of
the dog's expression and the artistic backdrop creates a humorous and exaggerated
scene, as if the Shiba Inu has just seen something shocking online.
output:
url: samples/1728928530812__000010000_0.jpg
- text: A calico cat with an exaggerated look of shock, sitting in front of a computer
screen. The cat's eyes are wide open, and its mouth is agape, as if in a state
of panic or disbelief. One tear is visible, adding a humorous sense of emotional
overwhelm. Like the previous image, the background features an abstract, vibrant
painting, reminiscent of a sunset, displayed on the computer screen. The setting
suggests the cat is intensely reacting to something it has just seen on the
computer, creating a comical and exaggerated scenario.
output:
url: samples/1728928552495__000010000_1.jpg
- text: A hamster-like character is depicted with an expression of shock or surprise,
sitting at a desk in front of a laptop. The hamster's wide eyes and open mouth,
along with its hands on its cheeks, give off a strong sense of disbelief or
astonishment. The character wears a blue tie, adding a humorous touch as if
it's reacting to something unexpected in a professional setting. In the background,
there is a colorful painting, reminiscent of Van Gogh's style, that enhances
the dramatic effect of the scene. The overall vibe of the image is comical
and exaggerated, as if the hamster is encountering a work-related surprise
or mishap.
output:
url: samples/1728928574134__000010000_2.jpg
base_model: black-forest-labs/FLUX.1-dev
license: other
license_name: flux-1-dev-non-commercial-license
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
---
# flux_lora_meme_v2
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
<Gallery />
## Trigger words
No trigger words defined.
## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
Weights for this model are available in Safetensors format.
[Download](/longnthgmedia/flux_lora_meme_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-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('longnthgmedia/flux_lora_meme_v2', weight_name='flux_lora_meme_v2.safetensors')
image = pipeline('A surprised or shocked Shiba Inu, sitting at a desk with its paws on a keyboard. Its wide eyes and open mouth convey an expression of intense surprise or panic, as if reacting to something unexpected on the computer screen. The background features a colorful, abstract painting reminiscent of 'The Scream' by Edvard Munch, adding to the overall sense of dramatic tension. The combination of the dog's expression and the artistic backdrop creates a humorous and exaggerated scene, as if the Shiba Inu has just seen something shocking online.').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)