AlekseyCalvin commited on
Commit
64dbf42
·
verified ·
1 Parent(s): 7dbec1c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -3
README.md CHANGED
@@ -1,3 +1,86 @@
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: >-
15
+ ivanovpoem style image with overlay poem text that reads "I'm hearing —
16
+ history and the humankind, I'm hearing — exile or else the native land. In
17
+ books I read — duplicity and benevolence, Despair and hope, or faith and
18
+ faithlessness. And I see, — Something vast, tender — And frightening,
19
+ iced to the core, Eternally hope-deprived. And I see, — Torture or else
20
+ forgetfulness, — Where everything's lost, forevermore, Its significance.
21
+ And I see, — Beyond all time and distances, — Above the poor earth, An
22
+ unearthly shimmering."
23
+ widget:
24
+ - text: >-
25
+ ivanovpoem style eclectic collage
26
+ output:
27
+ url: PoemLora4.webp
28
+ - text: >-
29
+ ivanovpoem style eclectic collage
30
+ output:
31
+ url: PoemLoraVar3.png
32
+
33
+ ---
34
+
35
+ ## FLUX LoRA Fine-Tuned on:
36
+ **I.20 restored/colorized photos + art depicting poet Georgiy Ivanov *(1894-1958)*** <br>
37
+ **II.60 Artworks/Photos from the 1920s/30s, cross-collaged together with the images of Ivanov** <br>
38
+ **III.2 short 1930 lyric poems by Georgiy Ivanov, translated & overlaid as text onto the visuals**. <br>
39
+ ## ||| By SilverAgePoets.com |||
40
+ ## |||||||| VARIANT III |||||||| <br>
41
+
42
+ **This LoRA is our second experimental attempt to prototype a text2image "poetry" LoRA, this time of both the poem & the poet.** <br>
43
+ **This is a third variant thereof.** <br>
44
+ **Variant 1 is rank (dim/alpha) 64 and found [HERE](https://huggingface.co/AlekseyCalvin/1930_Poem_by_Georgiy_Ivanov_FluxLoRA_bySilverAgePoets), Var.2 is 16 and available [HERE](https://huggingface.co/AlekseyCalvin/Poet_Georgiy_Ivanov_FluxLoRA_bySilverAgePoets), whilst this one is rank 8, at 1200 steps.** <br>
45
+
46
+ <Gallery />
47
+
48
+ **Georgiy Ivanov** *(1894-1958)* was an influential Russophone poet, critic, novelist, & memoirist. <br>
49
+ Posted below, & used towards this LoRA, is our translation of verses appearing in Ivanov’s best-known collection **"Roses"**, first published in Paris, 1930. <br>
50
+
51
+ ***I'm hearing — history and the humankind;** <br>
52
+ I hear — "exile" or "else the native land". <br>
53
+ In books, I read of — "duplicity" and "benevolence"; <br>
54
+ Despair, then hope; or faith and faithlessness.* <br>
55
+
56
+ *And I see, — Something <br>
57
+ Vast, tender; <br>
58
+ — And frightening, iced to the core, <br>
59
+ Eternally hope-deprived.* <br>
60
+
61
+ *And I see, — Torture,
62
+ – Or else forgetfulness; <br>
63
+ Where everything's lost, forevermore, <br>
64
+ Its significance.* <br>
65
+
66
+ *And I see, — Beyond all time and distances, <br>
67
+ – Above the poor earth, <br>
68
+ An unearthly shimmering.* <br>
69
+
70
+ Check out our other translations from Ivanov's poetry & prose [HERE](https://www.silveragepoets.com/georgiy-ivanov). <br>
71
+
72
+ ## Trigger words
73
+ You should use `ivanovpoem style image with overlay poem text that reads: /I'm hearing — history and the humankind, I'm hearing — exile or else the native land. In books I read — duplicity and benevolence, Despair and hope, or faith and faithlessness. And I see, — Something vast, tender — And frightening, iced to the core, Eternally hope-deprived. And I see, — Torture or else forgetfulness, — Where everything's lost, forevermore, Its significance. And I see, — Beyond all time and distances, — Above the poor earth, An unearthly shimmering./` to cast forth the poet's echoing reveries.
74
+
75
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
76
+
77
+ ```py
78
+ from diffusers import AutoPipelineForText2Image
79
+ import torch
80
+
81
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
82
+ pipeline.load_lora_weights('AlekseyCalvin/Poet_Georgiy_Ivanov_FluxLoRA_bySilverAgePoets')
83
+ image = pipeline('your prompt').images[0]
84
+ ```
85
+
86
+ 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)