Purz commited on
Commit
b9060ca
1 Parent(s): 67e6740

Upload folder using huggingface_hub

Browse files
34052282.jpeg ADDED
34052315.jpeg ADDED
34052326.jpeg ADDED
34052335.jpeg ADDED
34052338.jpeg ADDED
34058816.jpeg ADDED
34058898.jpeg ADDED
34058917.jpeg ADDED
README.md ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - concept
13
+ - cover
14
+ - album cover
15
+ - jazz
16
+ - purz
17
+ - flux1.d
18
+ - jazz album
19
+
20
+ base_model: black-forest-labs/FLUX.1-dev
21
+ instance_prompt: j4zz_c0v3r
22
+ widget:
23
+ - text: 'j4zz_c0v3r, a jazz album featuring a man playing trumpet, title "Kilometers Davis - There''s Jazz Everywhere"
24
+
25
+
26
+ '
27
+
28
+ output:
29
+ url: >-
30
+ 34052315.jpeg
31
+ - text: 'j4zz_c0v3r, a jazz album cover featuring computer server on fire, called "Civitai - Hot Servers"'
32
+
33
+ output:
34
+ url: >-
35
+ 34052282.jpeg
36
+ - text: 'j4zz_c0v3r, a jazz album featuring a man playing trumpet, title "Kilometers Davis - Fuck Your Ears"
37
+
38
+
39
+ '
40
+
41
+ output:
42
+ url: >-
43
+ 34052326.jpeg
44
+ - text: 'j4zz_c0v3r, a jazz album by "Purz" called "Just Obnoxious Noises"
45
+
46
+
47
+ '
48
+
49
+ output:
50
+ url: >-
51
+ 34052335.jpeg
52
+ - text: 'j4zz_c0v3r, a jazz album by "Purz" called "Just Obnoxious Noises"
53
+
54
+
55
+ '
56
+
57
+ output:
58
+ url: >-
59
+ 34052338.jpeg
60
+ - text: 'j4zz_c0v3r, a jazz album cover featuring a man holding a stop sign, called "Hold On, I''m Gonna Jazz"'
61
+
62
+ output:
63
+ url: >-
64
+ 34058898.jpeg
65
+ - text: 'j4zz_c0v3r, a jazz album cover featuring an angry nun "It Smells Like Jazz In Here"'
66
+
67
+ output:
68
+ url: >-
69
+ 34058917.jpeg
70
+ - text: 'j4zz_c0v3r, a jazz album cover featuring a man smiling with a raised eyebrow, called "I Accidentally Jazzzed Everywhere"'
71
+
72
+ output:
73
+ url: >-
74
+ 34058816.jpeg
75
+
76
+ ---
77
+
78
+ # Jazz Album Cover
79
+
80
+ <Gallery />
81
+
82
+
83
+
84
+
85
+
86
+ ## Model description
87
+
88
+ <p>Jazz Album Cover - LoRA (Flux.1 D)</p><p></p><p>Trained on Jazz album covers from the 60s and 70s.</p><p></p><p>" j4zz_c0v3r, a jazz album cover featuring computer server on fire, called "Civitai - Hot Servers" "</p><p></p><p>Purz</p><p>Website: <a target="_blank" rel="ugc" href="https://www.purz.xyz/">https://www.purz.xyz/</a><br />Creative Exploration /w Purz: <a target="_blank" rel="ugc" href="https://www.youtube.com/@PurzBeats">https://www.youtube.com/@PurzBeats</a><br />Patreon: <a target="_blank" rel="ugc" href="https://www.patreon.com/Purz">https://www.patreon.com/Purz</a><br />Twitter/X: <a target="_blank" rel="ugc" href="https://x.com/PurzBeats">https://x.com/PurzBeats</a><br />Instagram: <a target="_blank" rel="ugc" href="https://www.instagram.com/purzbeats/">https://www.instagram.com/purzbeats/</a></p>
89
+
90
+ ## Trigger words
91
+ You should use `j4zz_c0v3r` to trigger the image generation.
92
+
93
+
94
+ ## Download model
95
+
96
+ Weights for this model are available in Safetensors format.
97
+
98
+ [Download](/Purz/jazz-album-cover/tree/main) them in the Files & versions tab.
99
+
100
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
101
+
102
+ ```py
103
+ from diffusers import AutoPipelineForText2Image
104
+ import torch
105
+
106
+ device = "cuda" if torch.cuda.is_available() else "cpu"
107
+
108
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
109
+ pipeline.load_lora_weights('Purz/jazz-album-cover', weight_name='purz-j4zz_c0v3r.safetensors')
110
+ image = pipeline('j4zz_c0v3r, a jazz album cover featuring a man smiling with a raised eyebrow, called "I Accidentally Jazzzed Everywhere"').images[0]
111
+ ```
112
+
113
+ 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)
114
+
purz-j4zz_c0v3r.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cae7e451fa7f760e587caf61315999d2a0b0794b103c159001c623c60b65c37d
3
+ size 39765072