prithivMLmods commited on
Commit
2f8684c
·
verified ·
1 Parent(s): d83e475

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -1
README.md CHANGED
@@ -22,12 +22,52 @@ license: creativeml-openrail-m
22
 
23
  <Gallery />
24
 
 
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ## Trigger words
27
 
28
  You should use `LD Art` to trigger the image generation.
29
 
30
-
31
  ## Download model
32
 
33
  Weights for this model are available in Safetensors format.
 
22
 
23
  <Gallery />
24
 
25
+ # Model description for Ld-Art
26
 
27
+ Image Processing Parameters
28
+
29
+ | Parameter | Value | Parameter | Value |
30
+ |---------------------------|--------|---------------------------|--------|
31
+ | LR Scheduler | constant | Noise Offset | 0.03 |
32
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
33
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
34
+ | Network Alpha | 32 | Repeat & Steps | 29 & 2970 |
35
+ | Epoch | 17 | Save Every N Epochs | 1 |
36
+
37
+ Labeling: florence2-en(natural language & English)
38
+
39
+ Total Images Used for Training : 28
40
+
41
+ ## Best Dimensions & Inference
42
+
43
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
44
+ |-----------------|------------------|---------------------------|
45
+ | 1280 x 832 | 3:2 | Best |
46
+ | 1024 x 1024 | 1:1 | Default |
47
+
48
+ ### Inference Range
49
+
50
+ - **Recommended Inference Steps:** 30–35
51
+
52
+ ## Setting Up
53
+ ```python
54
+ import torch
55
+ from pipelines import DiffusionPipeline
56
+
57
+ base_model = "black-forest-labs/FLUX.1-dev"
58
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
59
+
60
+ lora_repo = "strangerzonehf/Ld-Art"
61
+ trigger_word = "LD Art"
62
+ pipe.load_lora_weights(lora_repo)
63
+
64
+ device = torch.device("cuda")
65
+ pipe.to(device)
66
+ ```
67
  ## Trigger words
68
 
69
  You should use `LD Art` to trigger the image generation.
70
 
 
71
  ## Download model
72
 
73
  Weights for this model are available in Safetensors format.