Woogiepark commited on
Commit
302acfa
·
verified ·
1 Parent(s): 149071d

Upload folder using huggingface_hub

Browse files
47670032.jpeg ADDED
47670033.jpeg ADDED
47670034.jpeg ADDED
47677464.jpeg ADDED
47677465.jpeg ADDED
47677466.jpeg ADDED
47677485.jpeg ADDED
47677486.jpeg ADDED
47677487.jpeg ADDED
Avatar-000001.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1170cd0cc44a948d7c5573b5281d424212ee232a06f5f9440c490e187aeb2ff
3
+ size 19261320
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=Sell&allowDerivatives=False&allowDifferentLicense=True
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - character
13
+ - avatarlora
14
+
15
+ base_model: black-forest-labs/FLUX.1-dev
16
+ instance_prompt:
17
+ widget:
18
+ - text: 'avatarlora. this image features a na''vi interacting with the glowing flora of Pandora. Their touch activates the plant''s light'
19
+
20
+ output:
21
+ url: >-
22
+ 47670033.jpeg
23
+ - text: 'with the ambient sound of Pandora''s wildlife softly filling the scene. The style is in high-quality definition with high-quality details'
24
+
25
+ output:
26
+ url: >-
27
+ 47670034.jpeg
28
+ - text: 'avatarlora. this image features a na''vi crouching by a glowing pond'
29
+
30
+ output:
31
+ url: >-
32
+ 47670032.jpeg
33
+ - text: ',avatarlora,this image features a na''vi curiously watching glowing butterflies flutter around them.'
34
+
35
+ output:
36
+ url: >-
37
+ 47677464.jpeg
38
+ - text: ',avatarlora,this image features a na''vi curiously watching glowing butterflies flutter around them.'
39
+
40
+ output:
41
+ url: >-
42
+ 47677465.jpeg
43
+ - text: ',avatarlora,this image features a na''vi curiously watching glowing butterflies flutter around them.'
44
+
45
+ output:
46
+ url: >-
47
+ 47677466.jpeg
48
+ - text: ',avatarlora,this image features a na''vi hanging glowing ornaments made from plants in their dwelling.'
49
+
50
+ output:
51
+ url: >-
52
+ 47677485.jpeg
53
+ - text: ',avatarlora,this image features a na''vi hanging glowing ornaments made from plants in their dwelling.'
54
+
55
+ output:
56
+ url: >-
57
+ 47677486.jpeg
58
+ - text: ',avatarlora,this image features a na''vi guiding glowing creatures back into the safety of the plants.'
59
+
60
+ output:
61
+ url: >-
62
+ 47677487.jpeg
63
+
64
+ ---
65
+
66
+ # Avatar
67
+
68
+ <Gallery />
69
+
70
+
71
+
72
+
73
+
74
+ ## Model description
75
+
76
+ <p>Generates avatars inspired by Avatar movie</p>
77
+
78
+
79
+
80
+ ## Download model
81
+
82
+ Weights for this model are available in Safetensors format.
83
+
84
+ [Download](/Woogiepark/avatar/tree/main) them in the Files & versions tab.
85
+
86
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
87
+
88
+ ```py
89
+ from diffusers import AutoPipelineForText2Image
90
+ import torch
91
+
92
+ device = "cuda" if torch.cuda.is_available() else "cpu"
93
+
94
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
95
+ pipeline.load_lora_weights('Woogiepark/avatar', weight_name='Avatar-000001.safetensors')
96
+ image = pipeline(',avatarlora,this image features a na'vi guiding glowing creatures back into the safety of the plants.').images[0]
97
+ ```
98
+
99
+ 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)
100
+