prithivMLmods commited on
Commit
279de4f
1 Parent(s): 29b6855

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md CHANGED
@@ -42,6 +42,48 @@ license: creativeml-openrail-m
42
 
43
  <Gallery />
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  ## Trigger words
46
 
47
  You should use `3D Emojies` to trigger the image generation.
 
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.