AlekseyCalvin commited on
Commit
39fdc39
1 Parent(s): f5b9e3f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -3
README.md CHANGED
@@ -1,3 +1,64 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+
4
+ tags:
5
+ - text-to-image
6
+ - template:sd-lora
7
+ - flux
8
+ - lora
9
+ - flux dev
10
+ - image-generation
11
+ - diffusers
12
+ - photo
13
+ pipeline_tag: text-to-image
14
+ emoji: 🔜
15
+ language:
16
+ - en
17
+ base_model: black-forest-labs/FLUX.1-dev
18
+
19
+ instance_prompt: HST autochrome photo
20
+
21
+ ---
22
+
23
+ # Soonr Flux HST IV: Historic Color for Dev (low step subtle experiment)
24
+ A salvaged interim weight merge from a prematurely aborted training session of a Dev version of our antique color photography LoRA for [FLUX.1-dev](https://huggingface.co/black-forest-labs/FLUX.1-Dev).
25
+ See our [Schnell Version](/AlekseyCalvin/historic_color_schnell/tree/main) for more comprehensively trained iteration of this adapter.
26
+ Trained by A.C.T. Soon® for 1000 steps on one A100 via Colab Pro, using an AI Toolkit notebook by Ostris.
27
+ While our Schnell version of this LoRA was trained on a relatively large archive, 135 images, for the Dev variation we used a smaller selection of 34 choice images, picked out of the same set.
28
+ Unfortunately, the strict usage time-limit of Colab Pro kicked in and undercut the training of our Dev version just past the 1000 step mark (basically, we ran out of Colab credits at that very inopportune moment).
29
+ This data set, used for both models, consists of a selection from a remarkable and unique collection of color photographs taken during the 1900s and 1910s by Sergey Prokudin-Gorsky, who traveled and photographed widely in those years while pioneering and perfecting implementations of an early three-color-composite photography technique.
30
+ We urge you to explore the work of Prokudin-Gorsky for yourself, at this wonderfully organized online [archive](https://prokudin-gorsky.org/), featuring many hundreds of high quality downloadable scans of composite color photo prints from the photographer's original glass plate negatives, available at the site alongside relatively recent restorations of a substantial portion of the images. The original glass-plate negatives are currently held at and administrated by the Library of Congress in Washington, DC, USA.
31
+
32
+
33
+ ## Trigger words
34
+ You should use `HST` to trigger the image generation.
35
+
36
+ - base model: [black-forest-labs/FLUX.1-dev](https://huggingface.co/black-forest-labs/FLUX.1-dev)
37
+
38
+ ## Historical Note
39
+ Prokudin-Gorsky's color photography technique would involve three photo-exposures, either simultaneous or sequential, using specialized color-spectrum filters (basically R.B.G.: red, blue, and green), rendering the same subject/shot onto glass plates covered with light-emulsive mixture. Prokudin-Gorsky's focus on refining the developer and filter quality, in tandem with his incessant and wide-ranging experimentation, and his persistent usage of glass plates (unwieldly and increasingly old-fashioned, but elsewise extra reliable) ultimately led him to produce a color photography oeuvre of much greater fidelity and vividness than achieved by most of his contemporaries.
40
+ At the same time, the peculiarities of the photographer's method, coupled with his exceptionally hands-on execution thereof, would manifest in a range of idyosyncratic color, light, and motion artifacts common across the resulting prints. Seldom marring the image as a whole, and less grave than the weaknesses of some contemporenously emerging autochrome techniques, the warm color hazes and flares framing many of Prokudin-Gorsky's prints may be seen as a kind of ephemeral signature.
41
+ Alongside some of the more subtle chromatic, textural, and (in some measure) figural characteristics of his work, these auras have imprinted themselves into this Flux LoRA, the fourth in our series of historical adapters for Flux.
42
+
43
+
44
+
45
+ ## Download model
46
+
47
+ Weights for this model are available in Safetensors format.
48
+ [Download](/AlekseyCalvin/historic_color_dev/tree/main) them in the Files & versions tab.
49
+
50
+
51
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
52
+
53
+ ```py
54
+ from diffusers import AutoPipelineForText2Image
55
+ import torch
56
+
57
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
58
+ pipeline.load_lora_weights('AlekseyCalvin/historic_color_dev')
59
+ image = pipeline('HST style photo of a cat').images[0]
60
+ image.save("my_image.png")
61
+ ```
62
+
63
+ For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
64
+