File size: 1,723 Bytes
98fc510
 
 
 
 
 
 
 
 
 
 
 
 
0656007
 
 
 
 
 
 
 
98fc510
 
 
 
 
978bfd4
98fc510
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
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: photo of Julian Assange, white hair, realistic Assange
widget:
- text: >-
    Photo of Julian Assange reading a book, amateur film camera photograph,
    realistically textured skin  with pores, realistic Assange, white hair
  output:
    url: images/example_w0aiybaee.png

---
## Julian Assange Identity ℒ𝓸ℜ𝐴
## ||| By SilverAgePoets.com |||

A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
Intended to produce the likeness of Julian Assange circa roughly 2014-2017. <br>
Made to create content for a conceptual animation project. <br>
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> 
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>

<Gallery />

## Prompt using:
`Photo of Julian Assange, white hair, realistic Assange`, etc...  <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/Julian_Assange_FluxLoRA_BySilverAgePoets')
image = pipeline('your prompt').images[0]
```