--- license: other license_name: "bespoke-lora-trained-license" license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True tags: - diffusers - lora - meme - memes - migrated - stable-diffusion - style - template:sd-lora - text-to-image base_model: black-forest-labs/FLUX.1-dev instance_prompt: Deep fried meme. widget: - text: 'Deep fried meme. A 3d render of Shrek angrily holding a gun to the viewer. He has red glowing eyes. Top text "THIS IS A ROBBERY", bottom text "GIVE ME THE BUZZ". Low quality, jpeg compression, saturated colors, distortion. ' output: url: >- 28507633.jpeg - text: 'Deep fried meme. Low quality distorted image of a fisherman holding a giant fish. Saturated colors, jpeg compression, distortion. ' output: url: >- 28507670.jpeg - text: 'Deep fried meme. Hatsune Miku smiling and holding a sign that says "12GB is finally enough!". Sakura trees in the background. Low quality, jpeg compression, saturated colors, distortion. ' output: url: >- 28507695.jpeg - text: 'Deep fried meme. Extremely low quality and distorted screenshot of a Twitter post that says "not funny, didn''t laugh". Like and retweet icons below the post, showing 69 retweets and 420 likes. Low quality, jpeg compression, saturated colors, distortion. ' output: url: >- 28507728.jpeg - text: 'Deep fried meme. A peanut on a white background. Top text is "DEEZ", bottom text is "Pay $4.99 to unlock bottom text". Saturated colors, jpeg compression, distortion. ' output: url: >- 28507736.jpeg --- # Deep Fried Memes (Flux Dev) This model was originally uploaded on [CivitAI](https://civitai.com/models/735558), by [analogspiderweb](https://civitai.com/user/analogspiderweb/models). The information below was provided by the author on CivitAI: ([CivitAI](https://civitai.com/models/735558)) ## Model description

Now you can relive the incredibly unfunny memes of 2018!

Trigger is "Deep fried meme." at the start of the prompt.

Trained using Fluxgym: https://github.com/cocktailpeanut/fluxgym

All captions were manually written, and copy+pasted into Fluxgym since you can't upload text files to it yet.

## Trigger words You should use `Deep fried meme.` to trigger the generation. ## Download model Weights for this model are available in Safetensors format. [Download](/analogspiderweb/deep-fried-memes-flux-dev/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) pipe.load_lora_weights('analogspiderweb/deep-fried-memes-flux-dev', weight_name='deep-fried-memes.safetensors') image = pipeline('Deep fried meme. A 3d render of Shrek angrily holding a gun to the viewer. He has red glowing eyes. Top text "THIS IS A ROBBERY", bottom text "GIVE ME THE BUZZ". Low quality, jpeg compression, saturated colors, distortion. ').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)