File size: 2,613 Bytes
98b4b76
 
 
 
 
 
 
 
 
 
 
 
 
 
ae0b3dc
 
 
 
 
 
 
 
 
 
fa59f36
 
 
 
 
ae0b3dc
98b4b76
 
 
 
 
 
 
 
 
 
19deb15
98b4b76
5847a7f
 
98b4b76
 
 
991159f
98b4b76
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
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: <br>
Our [Georgiy Ivanov Versebook Collage Art LoRA](https://huggingface.co/AlekseyCalvin/ArtAtTheBulb_LoRA_bySilverAgePoets)<br>
&<br>
[WizWhite](https://huggingface.co/WizWhite)'s [Wizard's Vintage Punk Fanzine LoRA](https://civitai.com/models/1026341/wizards-vintage-punk-fanzine)<br>

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!<br>
Now, if any of the above demographic tags zap awake your self-identity clocks, then we urge you:<br>
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)...<br>
It's the utmost DIY codeless side of AI!<br>

<Gallery />

## 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.<br>

## 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]
```