Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,44 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
base_model:
|
6 |
+
- black-forest-labs/FLUX.1-dev
|
7 |
+
tags:
|
8 |
+
- lora
|
9 |
+
- flux
|
10 |
+
- diffusers
|
11 |
+
- image-generation
|
12 |
+
pipeline_tag: text-to-image
|
13 |
+
library_name: diffusers
|
14 |
+
instance_prompt: >-
|
15 |
+
vintage punk fanzine ivanovpoem style eclectic collage diy show flier, CRASS, NoWAVE, versebook page, spread, halftone pattern, xerox print, raster effect
|
16 |
+
---
|
17 |
+
|
18 |
+
## Punky Versebook Zine Flux MERGE
|
19 |
+
## __||| By SilverAgePoets.com |||__
|
20 |
+
|
21 |
+
A FLUX LoRA merge between: <br>
|
22 |
+
Our [Georgiy Ivanov Versebook Collage Art LoRA](https://huggingface.co/AlekseyCalvin/ArtAtTheBulb_LoRA_bySilverAgePoets)<br>
|
23 |
+
&<br>
|
24 |
+
[WizWhite](https://huggingface.co/WizWhite)'s [Wizard's Vintage Punk Fanzine LoRA](https://civitai.com/models/1026341/wizards-vintage-punk-fanzine)<br>
|
25 |
+
|
26 |
+
Our hope is for this merge (as well as its source adaptors) to be used by artists, performers, poets, show-throwers, DIY presses, activists, manifestoists, & anyone else short on money &/or time &/or hats!<br>
|
27 |
+
Now, if any of the above demographic tags zap awake your self-identity clocks, then we urge you:<br>
|
28 |
+
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!<br>
|
29 |
+
|
30 |
+
<Gallery />
|
31 |
+
|
32 |
+
## Activator/Reinforcer Phrases to Prompt
|
33 |
+
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>
|
34 |
+
|
35 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
36 |
+
|
37 |
+
```py
|
38 |
+
from diffusers import AutoPipelineForText2Image
|
39 |
+
import torch
|
40 |
+
|
41 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
42 |
+
pipeline.load_lora_weights('AlekseyCalvin/PunkyVersebookZine')
|
43 |
+
image = pipeline('your prompt').images[0]
|
44 |
+
```
|