brushpenbob commited on
Commit
f773882
1 Parent(s): 53bb0b9

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. 26092527.jpeg +0 -0
  2. 26168662.jpeg +0 -0
  3. Flux_retro_Disney.safetensors +3 -0
  4. README.md +64 -0
26092527.jpeg ADDED
26168662.jpeg ADDED
Flux_retro_Disney.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9365d76a30c557feaa70aafff2eb18b3dcb6d34289fbd411fbb0b6d677690d8a
3
+ size 19267256
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=RentCivit&allowDerivatives=False&allowDifferentLicense=False
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - style
13
+
14
+ base_model: black-forest-labs/FLUX.1-dev
15
+ instance_prompt: egdisney
16
+ widget:
17
+ - text: ' '
18
+
19
+ output:
20
+ url: >-
21
+ 26168662.jpeg
22
+ - text: ' '
23
+
24
+ output:
25
+ url: >-
26
+ 26092527.jpeg
27
+
28
+ ---
29
+
30
+ # Flux retro Disney
31
+
32
+ <Gallery />
33
+
34
+
35
+
36
+
37
+
38
+ ## Model description
39
+
40
+ <p>Based off of the retro Disney look. Might need to return this at a higher epoch still testing</p><p></p><div data-youtube-video><iframe width="640" height="480" allowfullscreen="true" autoplay="false" disablekbcontrols="false" enableiframeapi="false" endtime="0" ivloadpolicy="0" loop="false" modestbranding="false" origin playlist src="https://www.youtube.com/embed/QynE0UGQhRs" start="0"></iframe></div>
41
+
42
+ ## Trigger words
43
+ You should use `egdisney` to trigger the image generation.
44
+
45
+
46
+ ## Download model
47
+
48
+ Weights for this model are available in Safetensors format.
49
+
50
+ [Download](/brushpenbob/flux-retro-disney/tree/main) them in the Files & versions tab.
51
+
52
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
53
+
54
+ ```py
55
+ from diffusers import AutoPipelineForText2Image
56
+ import torch
57
+
58
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
59
+ pipeline.load_lora_weights('brushpenbob/flux-retro-disney', weight_name='Flux_retro_Disney.safetensors')
60
+ image = pipeline('`egdisney`').images[0]
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
+