Purz commited on
Commit
5d9c602
1 Parent(s): cc5627a

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ 34768748.jpeg filter=lfs diff=lfs merge=lfs -text
37
+ 34769403.jpeg filter=lfs diff=lfs merge=lfs -text
34768748.jpeg ADDED

Git LFS Details

  • SHA256: 3f4ec6fcae37a7e8c169ce729ff1775927488c127722bd7ed04efc82f6b03f97
  • Pointer size: 132 Bytes
  • Size of remote file: 9.18 MB
34768964.jpeg ADDED
34769061.jpeg ADDED
34769065.jpeg ADDED
34769403.jpeg ADDED

Git LFS Details

  • SHA256: 1d755ed4c9f2170e0cdb136276e18ce2525881dff0b56adefcfbc3ba34d9cfcf
  • Pointer size: 133 Bytes
  • Size of remote file: 95 MB
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - room
14
+ - dj
15
+ - boiler
16
+ - purz
17
+ - flux1.d
18
+ - boiler room
19
+ - live show
20
+
21
+ base_model: black-forest-labs/FLUX.1-dev
22
+ instance_prompt: b0173r_r00m
23
+ widget:
24
+ - text: ' '
25
+
26
+ output:
27
+ url: >-
28
+ 34768748.jpeg
29
+ - text: ' '
30
+
31
+ output:
32
+ url: >-
33
+ 34769403.jpeg
34
+ - text: 'b0173r_r00m, a man in a dinosaur suit djing, low angle, people dancing all around'
35
+
36
+ output:
37
+ url: >-
38
+ 34768964.jpeg
39
+ - text: 'b0173r_r00m, boiler room, mushroom kingdom, a woman wearing princess peach cosplay playing a dj set at a boiler room nightclub. he is surrounded by a group of people'
40
+
41
+ output:
42
+ url: >-
43
+ 34769061.jpeg
44
+ - text: 'b0173r_r00m, man wearing super mario cosplay playing a dj set at a boiler room nightclub. he is surrounded by a group of people'
45
+
46
+ output:
47
+ url: >-
48
+ 34769065.jpeg
49
+
50
+ ---
51
+
52
+ # Boiler Room
53
+
54
+ <Gallery />
55
+
56
+
57
+
58
+
59
+
60
+ ## Model description
61
+
62
+ <p>Boiler Room - LoRA (Flux.1 D)</p><p></p><p>Trained on photos of Boiler Room sets.</p><p></p><p>"b0173r_r00m, man wearing super mario cosplay playing a dj set at a boiler room nightclub. he is surrounded by a group of people"</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>
63
+
64
+ ## Trigger words
65
+ You should use `b0173r_r00m` to trigger the image generation.
66
+
67
+
68
+ ## Download model
69
+
70
+ Weights for this model are available in Safetensors format.
71
+
72
+ [Download](/Purz/boiler-room/tree/main) them in the Files & versions tab.
73
+
74
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
75
+
76
+ ```py
77
+ from diffusers import AutoPipelineForText2Image
78
+ import torch
79
+
80
+ device = "cuda" if torch.cuda.is_available() else "cpu"
81
+
82
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
83
+ pipeline.load_lora_weights('Purz/boiler-room', weight_name='purz-b0173r_r00m-boiler-room.safetensors')
84
+ image = pipeline('b0173r_r00m, man wearing super mario cosplay playing a dj set at a boiler room nightclub. he is surrounded by a group of people').images[0]
85
+ ```
86
+
87
+ 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)
88
+
purz-b0173r_r00m-boiler-room.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32ddf043a8f4b3aa96d1b82d81070212ab174394c5dcba881321f6a37996d72b
3
+ size 39766888