AlekseyCalvin
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,41 @@
|
|
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 |
+
photo of Julian Assange, white hair, realistic Assange
|
16 |
+
---
|
17 |
+
## Julian Assange Identity ℒ𝓸ℜ𝐴
|
18 |
+
## ||| By SilverAgePoets.com |||
|
19 |
+
|
20 |
+
A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
|
21 |
+
Intended to produce the likeness of Julian Assange circa roughly 2011-2014. <br>
|
22 |
+
Made to create content for a conceptual animation project. <br>
|
23 |
+
This LoRA was fine-tuned on a minimal set of widely available publicity photos, many (if not all) of which have almost certainly already gone into SD1.4/1.5 and maybe other models (albeit in unfocused-on forms), via news/etc-sourced pre-training data. <br>
|
24 |
+
We politely ask you not to use this LoRA towards any creation, production, illustration, or any other use-case that might in any way compromise (or even so much as annoy) the real Assange. <br>
|
25 |
+
|
26 |
+
<Gallery />
|
27 |
+
|
28 |
+
## Prompt using:
|
29 |
+
`Photo of Julian Assange, white hair, realistic Assange`, etc... <br>
|
30 |
+
|
31 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
32 |
+
|
33 |
+
```py
|
34 |
+
from diffusers import AutoPipelineForText2Image
|
35 |
+
import torch
|
36 |
+
|
37 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
38 |
+
pipeline.load_lora_weights('AlekseyCalvin/Julian_Assange_FluxLoRA_BySilverAgePoets')
|
39 |
+
image = pipeline('your prompt').images[0]
|
40 |
+
```
|
41 |
+
|