Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,37 @@
|
|
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 |
+
## HSToric Color Flex / Flux LoRA
|
15 |
+
## ____||| By SilverAgePoets.com |||____
|
16 |
+
|
17 |
+
<Gallery />
|
18 |
+
This addition to our HSToric Color text-2-image model adapter series was fine-tuned over the [FLEX.1 Alpha (8B) model](https://huggingface.co/ostris/Flex.1-alpha): Ostris's ground-up modification of Flux to enable greater fine-tuning flexibility and extend the horizons of potential quality. <br>
|
19 |
+
Like several of the other HST Color models, this version was traned on HD scans of early color photos (circa *1900s-1910s*) by **Sergey Prokudin-Gorsky**, who traveled and photographed widely in those years whilst perfecting implementations of a pioneering 3-color-composite photography technique.<br>
|
20 |
+
|
21 |
+
**This model is aimed at being useful for**:<br>
|
22 |
+
- Producing realistic images reminiscent of color film analog photography, exhibiting parallels to a broad spectrum of iconic instrumentalities and visual paradigms, from Autochrome-to-Kodachrome-to-Fujifilm-and-beyond. <br>
|
23 |
+
- Producing visuals with a vaguely "historical" or "lived-in" aesthetic character, striking chromaticity and luminosity dynamics, as well as textural/anatomical/skin details more reliably lifelike than through the use of other suchlike-use-case-catered adapters. <br>
|
24 |
+
|
25 |
+
## Trigger words
|
26 |
+
You should use `HST style autochrome photograph` to open a vivid window into a chromatically bewitching ever-futurous past.<br>
|
27 |
+
|
28 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
29 |
+
|
30 |
+
```py
|
31 |
+
from diffusers import AutoPipelineForText2Image
|
32 |
+
import torch
|
33 |
+
|
34 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
35 |
+
pipeline.load_lora_weights('AlekseyCalvin/HSTcolorFlexAlpha')
|
36 |
+
image = pipeline('your prompt').images[0]
|
37 |
+
```
|