---
license: apache-2.0
language:
- en
base_model:
- black-forest-labs/FLUX.1-dev
tags:
- lora
- flux
- diffusers
- image-generation
pipeline_tag: text-to-image
library_name: diffusers
instance_prompt: >-
vintage punk fanzine ivanovpoem style eclectic collage diy show flier, CRASS,
NoWAVE, versebook page, spread, halftone pattern, xerox print, raster effect
widget:
- text: >-
vintage punk fanzine ivanovpoem style eclectic collage, on zine page of a
utopian autonomous zone-based radically public sculptural utopian cityscape,
eclectic show flier for the band "B.U.", with titular text "B.U. LIVE IN
2025" and a spread of punky avant-garde bottles & collaged punk zine artist
faces, No wave, New York underground art, crass
output:
url: BUz.png
- text: >-
vintage punk fanzine ivanovpoem style eclectic collage,
output:
url: LittleOilZine.png
---
## Punky Versebook Zine Flux MERGE
## __||| By SilverAgePoets.com |||__
A FLUX LoRA merge between:
Our [Georgiy Ivanov Versebook Collage Art LoRA](https://huggingface.co/AlekseyCalvin/ArtAtTheBulb_LoRA_bySilverAgePoets)
&
[WizWhite](https://huggingface.co/WizWhite)'s [Wizard's Vintage Punk Fanzine LoRA](https://civitai.com/models/1026341/wizards-vintage-punk-fanzine)
Our hope is for this merge (+ its source adaptors) to be used by artists, performers, poets, show-throwers, DIY presses, activists, manifestoists, & all those short on money &/or time &/or hats!
Now, if any of the above demographic tags zap awake your self-identity clocks, then we urge you:
Do try out, in its purer form, this here adapter's core source component: [WizWhite](https://huggingface.co/WizWhite)'s [Wizard's Vintage Punk Fanzine LoRA](https://civitai.com/models/1026341/wizards-vintage-punk-fanzine)...
It's the utmost DIY codeless side of AI!
## Trigger/Activator/Reinforcer Phrases to Prompt
You should use `vintage punk fanzine ivanovpoem style eclectic collage diy show flier, CRASS, NoWAVE, versebook page, spread, halftone pattern, xerox print, raster effect` or/& `ivanovpoem style eclectic collage spread in a vintage punk fanzine` to launch some fresh fliers from down in the basement.
## 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.float16).to('cuda')
pipeline.load_lora_weights('AlekseyCalvin/PunkyVersebookZine')
image = pipeline('your prompt').images[0]
```