Text-to-Image
Diffusers
lora
template:diffusion-lora
prithivMLmods commited on
Commit
e8d02a9
·
verified ·
1 Parent(s): f6bf00a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md CHANGED
@@ -33,6 +33,48 @@ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICE
33
 
34
  <Gallery />
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ## Trigger words
37
 
38
  You should use `Qx-Art` to trigger the image generation.
 
33
 
34
  <Gallery />
35
 
36
+ # Model description for Qx-Art
37
+
38
+ Image Processing Parameters
39
+
40
+ | Parameter | Value | Parameter | Value |
41
+ |---------------------------|--------|---------------------------|--------|
42
+ | LR Scheduler | constant | Noise Offset | 0.03 |
43
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
44
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
45
+ | Network Alpha | 32 | Repeat & Steps | 18 & 2630 |
46
+ | Epoch | 17 | Save Every N Epochs | 1 |
47
+
48
+ Labeling: florence2-en(natural language & English)
49
+
50
+ Total Images Used for Training : 19
51
+
52
+ ## Best Dimensions & Inference
53
+
54
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
55
+ |-----------------|------------------|---------------------------|
56
+ | 1280 x 832 | 3:2 | Best |
57
+ | 1024 x 1024 | 1:1 | Default |
58
+
59
+ ### Inference Range
60
+
61
+ - **Recommended Inference Steps:** 30–35
62
+
63
+ ## Setting Up
64
+ ```python
65
+ import torch
66
+ from pipelines import DiffusionPipeline
67
+
68
+ base_model = "black-forest-labs/FLUX.1-dev"
69
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
70
+
71
+ lora_repo = "strangerzonehf/Qx-Art"
72
+ trigger_word = "Qx-Art"
73
+ pipe.load_lora_weights(lora_repo)
74
+
75
+ device = torch.device("cuda")
76
+ pipe.to(device)
77
+ ```
78
  ## Trigger words
79
 
80
  You should use `Qx-Art` to trigger the image generation.