AlekseyCalvin commited on
Commit
2bae398
·
verified ·
1 Parent(s): 833140d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -3
README.md CHANGED
@@ -1,3 +1,42 @@
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: photo of Julian Assange, white hair, realistic Assange
15
+ ---
16
+ ## Julian Assange ℒ𝓸ℜ𝐴 Variant 2
17
+ ## |||| By SilverAgePoets.com ||||
18
+ *NOTE: This Variant was fine-tuned over a Dedistilled version of Flux, and at a higher rank than Varint 1.* <br>
19
+ *Find **Julian Assange LoRA Variant 1** [HERE](https://huggingface.co/AlekseyCalvin/Julian_Assange_FluxLoRA_BySilverAgePoets).* <br>
20
+
21
+ A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
22
+ Intended to produce the likeness of Julian Assange circa roughly 2014-2017. <br>
23
+ Made to create content for a conceptual animation project. <br>
24
+ 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>
25
+ 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>
26
+
27
+ <Gallery />
28
+
29
+ ## Prompt using:
30
+ `Photo of Julian Assange, white hair, realistic Assange`, etc... <br>
31
+
32
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
33
+
34
+ ```py
35
+ from diffusers import AutoPipelineForText2Image
36
+ import torch
37
+
38
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
39
+ pipeline.load_lora_weights('AlekseyCalvin/Julian_Assange_Var2OverDedist_FluxLoRA_BySilverAgePoets')
40
+ image = pipeline('your prompt').images[0]
41
+ ```
42
+