CRAWNiiK commited on
Commit
ade267c
·
verified ·
1 Parent(s): 96c57e5

Upload 11 files

Browse files
Flux-3D-Emojies-Mation.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae9a9377825aff7b82c5e7214dfd4a5bda3159dfd2436ec26104ecb407861042
3
+ size 612747016
README.md CHANGED
@@ -1,3 +1,95 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - text-to-image
4
+ - lora
5
+ - diffusers
6
+ - template:diffusion-lora
7
+ - 3D
8
+ - Emojies
9
+ widget:
10
+ - text: '3D Emojies, An animated head of a woman with brown hair and a purple crown on her head that says "LIVE" in white letters. The head is facing towards the left side of the image. Her eyes are blue and her mouth is slightly open. She is wearing a headset that is white and has a blue microphone attached to it. The background is a vibrant purple color.'
11
+ output:
12
+ url: images/1.png
13
+ - text: '3D Emojies, a vibrant orange face is adorned with the words "VIBES" and "BAD" written on it in black marker. Above the face, a head of a black rabbit is seen, adorned with five yellow bananas, adding a pop of color to the scene. The background is a stark white, creating a stark contrast to the orange face.'
14
+ output:
15
+ url: images/2.png
16
+ - text: '3D Emojies, a 3D rendering of a mans face features a black mustache and googles. The mans head is adorned with a beige beanie, adorned with black eyebrows and black circles. The background is a creamy beige, adding a pop of color to the scene.'
17
+ output:
18
+ url: images/3.png
19
+ - text: '3D Emojies, Captured from a high-angle perspective on a pink backdrop, a cartoon face is adorned with a purple mustache and black rimmed glasses. The eyes, a pink nose, and a black beanie cap are adorned with purple circles. The background is a soft pink, adding a pop of color to the scene.'
20
+ output:
21
+ url: images/4.png
22
+ - text: '3D Emojies, a cheerful orange cat face wearing oversized pink sunglasses with heart-shaped lenses. Its whiskers are white, and its ears are tipped with a gradient of blue. The cats mouth is wide open in a smile, showing tiny white teeth. The background is a vibrant teal, giving the scene a playful and summery vibe.'
23
+ output:
24
+ url: images/5.png
25
+ - text: '3D Emojies, a cheerful sun with a smiling face, wearing round glasses with rainbow-colored lenses. Its rays are wavy and multi-colored, giving it a whimsical appearance. The background is a clear blue sky with birds flying in the distance.'
26
+ output:
27
+ url: images/6.png
28
+ - text: '3D Emojies, a cheerful sun with a smiling face, wearing round glasses with rainbow-colored lenses. Its rays are wavy and multi-colored, giving it a whimsical appearance. The background is a clear blue sky with birds flying in the distance.'
29
+ output:
30
+ url: images/7.png
31
+ - text: '3D Emojies, a playful clown face with a bright red nose, curly blue hair, and a yellow party hat covered in polka dots. The clowns face is painted with a happy expression, including exaggerated black eyebrows and a big toothy grin. The background is a carnival scene with balloons and confetti.'
32
+ output:
33
+ url: images/8.png
34
+ - text: '3D Emojies, a golden retriever puppy face wearing a pair of aviator sunglasses. The puppys tongue is hanging out, and it has a blue bandana tied around its neck. The background is a sunny beach scene with waves and palm trees in the distance.'
35
+ output:
36
+ url: images/9.png
37
+ base_model: black-forest-labs/FLUX.1-dev
38
+ instance_prompt: 3D Emojies
39
+ license: creativeml-openrail-m
40
  ---
41
+ ![xsvsxvdsdvsdv.png](https://cdn-uploads.huggingface.co/production/uploads/65bb837dbfb878f46c77de4c/u2hFjYJIfPMSuTngWfFnm.png)
42
+
43
+ <Gallery />
44
+
45
+ # Model description for Flux-3D-Emojies-LoRA
46
+
47
+ Image Processing Parameters
48
+
49
+ | Parameter | Value | Parameter | Value |
50
+ |---------------------------|--------|---------------------------|--------|
51
+ | LR Scheduler | constant | Noise Offset | 0.03 |
52
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
53
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
54
+ | Network Alpha | 32 | Repeat & Steps | 24 & 3250 |
55
+ | Epoch | 18 | Save Every N Epochs | 1 |
56
+
57
+ Labeling: florence2-en(natural language & English)
58
+
59
+ Total Images Used for Training : 24 [ Flat 4K ]
60
+
61
+ ## Best Dimensions & Inference
62
+
63
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
64
+ |-----------------|------------------|---------------------------|
65
+ | 1280 x 832 | 3:2 | Best |
66
+ | 1024 x 1024 | 1:1 | Default |
67
+
68
+ ### Inference Range
69
+
70
+ - **Recommended Inference Steps:** 30–35
71
+
72
+ ## Setting Up
73
+ ```python
74
+ import torch
75
+ from pipelines import DiffusionPipeline
76
+
77
+ base_model = "black-forest-labs/FLUX.1-dev"
78
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
79
+
80
+ lora_repo = "strangerzonehf/Flux-3D-Emojies-LoRA"
81
+ trigger_word = "3D Emojies"
82
+ pipe.load_lora_weights(lora_repo)
83
+
84
+ device = torch.device("cuda")
85
+ pipe.to(device)
86
+ ```
87
+ ## Trigger words
88
+
89
+ You should use `3D Emojies` to trigger the image generation.
90
+
91
+ ## Download model
92
+
93
+ Weights for this model are available in Safetensors format.
94
+
95
+ [Download](/strangerzonehf/Flux-3D-Emojies-LoRA/tree/main) them in the Files & versions tab.
images/1.png ADDED
images/2.png ADDED
images/3.png ADDED
images/4.png ADDED
images/5.png ADDED
images/6.png ADDED
images/7.png ADDED
images/8.png ADDED
images/9.png ADDED