AlekseyCalvin commited on
Commit
26a2f26
·
verified ·
1 Parent(s): d967a75

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -3
README.md CHANGED
@@ -1,3 +1,40 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - flux
7
+ - diffusers
8
+ - lora
9
+ - replicate
10
+ base_model: black-forest-labs/FLUX.1-dev
11
+ pipeline_tag: text-to-image
12
+ instance_prompt: HST style autochrome photograph
13
+ ---
14
+
15
+ ## HSToric Color Lush Apparition V.1 Low-Rank Adapter
16
+ ## ____||| By SilverAgePoets.com |||____
17
+
18
+ <Gallery />
19
+ <br>
20
+
21
+ Our two HSToric Color Lush Apparition HSToric Color low rank adapters series are belatedly shared byproducts of our early Flux training experiments and projects Flux circa summer of 2024. Basically, we wanted to reposition the definition of "quality" when it comes to photorealistic inference using the open/distilled Flux variants, particularly Schnell. <br>
22
+ To achieve this, we turned to the very beginnings of historical photography in color: the archival legacy (from circa *1900s-1910s* ) of the photographers **Sergey Prokudin-Gorsky**, who traveled and photographed widely in those years whilst perfecting implementations of a pioneering 3-color-composite photography technique.<br>
23
+ This LoRA represents one of our many attempts/approaches to charging the representational powers of Flux with the uncanny character and finesse of Prokudin's visionary captures. <br>
24
+ You might find, however, that the Lush Apparition LoRAs are something more than just aesthetically unique. They are also more than a little... demented. And extremely creative. In short, they seldom quite follow prompts. <br>
25
+ This is because whilst producing these two LoRAS we were experimenting with targeted fine-tuning solely over specified layers/components of the base model. Trying out all sorts of layer combos, we strayed far from the commonplace quick-train surface targeting character LoRA templates. <br> Naturally, these trainings were also high rank. See the configs for more details. <br>
26
+
27
+ ## Trigger words
28
+ You should use `HST style autochrome photograph` to open a vivid window into a chromatically bewitching ever-futurous past.<br>
29
+
30
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
31
+
32
+ ```py
33
+ from diffusers import AutoPipelineForText2Image
34
+ import torch
35
+
36
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
37
+ pipeline.load_lora_weights('AlekseyCalvin/HSTcolorFlux_LushApparitionLoRAvI_BySilverAgePoets')
38
+ image = pipeline('your prompt').images[0]
39
+ ```
40
+ ---