|
--- |
|
license: other |
|
license_name: "bespoke-lora-trained-license" |
|
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True |
|
tags: |
|
- aesthetic |
|
- diffusers |
|
- flux1.d |
|
- lora |
|
- migrated |
|
- stable-diffusion |
|
- style |
|
- template:sd-lora |
|
- text-to-image |
|
- weirdcore |
|
|
|
base_model: black-forest-labs/FLUX.1-dev |
|
instance_prompt: |
|
widget: |
|
- text: 'Weirdcore aesthetic. Low quality photo of an empty room with a giant hole in the floor. The hole leads to a beautiful field with edited butterflies and rainbows coming out. The blue text says "don''t you wanna see what''s on the other side?". ' |
|
|
|
output: |
|
url: >- |
|
24754673.jpeg |
|
- text: 'Weirdcore aesthetic. Flash photography of an empty bedroom with a wrinkly red heart-shaped balloon sitting in the middle of the floor. Red text above says "no bitches?" ' |
|
|
|
output: |
|
url: >- |
|
24755365.jpeg |
|
- text: 'Weirdcore aesthetic. Flash photography of a bedroom with a censored figure sleeping in bed. The figure is completely censored, with black drawn over the image. The white text above says "mommy, i frew up" ' |
|
|
|
output: |
|
url: >- |
|
24757521.jpeg |
|
--- |
|
|
|
# Weirdcore Aesthetic (Flux Dev) |
|
|
|
<Gallery /> |
|
|
|
This model was originally uploaded on [CivitAI](https://civitai.com/models/654975), by [analogspiderweb](https://civitai.com/user/analogspiderweb/models). The information below was provided by the author on CivitAI: |
|
([CivitAI](https://civitai.com/models/654975)) |
|
|
|
## Model description |
|
<p>Trigger is "Weirdcore aesthetic." at the start of the prompt. For the first sample image, I had to manually fix the text using Photopea and inpainting with a low denoise value.</p><p>I'm not very experienced with making natural language datasets, so if any of you think you could improve on this, the dataset is available too.</p> |
|
|
|
|
|
|
|
## Download model |
|
Weights for this model are available in Safetensors format. |
|
[Download](/analogspiderweb/weirdcore-aesthetic-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/weirdcore-aesthetic-flux-dev', weight_name='weirdcore-aesthetic-flux-dev.safetensors') |
|
image = pipeline('Weirdcore aesthetic. Low quality photo of an empty room with a giant hole in the floor. The hole leads to a beautiful field with edited butterflies and rainbows coming out. The blue text says "don\'t you wanna see what\'s on the other side?". ').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) |
|
|
|
|