AlekseyCalvin commited on
Commit
070c00b
·
verified ·
1 Parent(s): 9b5d1c5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
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 color analog film photogravure photo, phantasmal garden, antique kodachrome, surrealist eroticism, gothic photograph, crisp textures, intricately detailed
13
+ ---
14
+ ## Phantasmal Photogravure: Another HSToric Color LoRA
15
+ ## ____||| By SilverAgePoets.com |||____
16
+
17
+ <Gallery />
18
+ Yet another of out antique photography style Flux LoRAS, mainly trained on vageully sureal pictoralist prints from between the 1880s and the 1920s. Lots of garden, mists, personas of nymphs and deities adopted by bohemian models. <br>
19
+
20
+ This addition to our HSToric Color text-2-image model adapter series was fine-tuned over the [Colossus 2.1 Dedistilled Model](https://civitai.com/models/833086?modelVersionId=996001), a modified Flux-family model by Afroman4peace. <br>
21
+ Like some of the other HST color models, this variant was trained 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>
22
+
23
+ ## Trigger words
24
+ To gently nudge open the wine fence gate with its shifty serpentine designs and enter this phantasmagoric garden, enspell`HST style autochrome photograph` or 'HST style autochrome color photogravure analog film photo, phantasmal garden, antique pictoralist early kodachrome, surrealist eroticism, gothic photograph, crisp textures, intricately detailed artistic conceptual photography', and the suchlike... <br>
25
+
26
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
27
+
28
+ ```py
29
+ from diffusers import AutoPipelineForText2Image
30
+ import torch
31
+
32
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
33
+ pipeline.load_lora_weights('AlekseyCalvin/PhantasmalPhotogravures_FluxLoRA_BySilverAgePoets')
34
+ image = pipeline('your prompt').images[0]
35
+ ```