prithivMLmods commited on
Commit
863d03d
·
verified ·
1 Parent(s): 9311423

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -25,7 +25,52 @@ license: creativeml-openrail-m
25
 
26
  <Gallery />
27
 
 
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  ## Trigger words
30
 
31
  You should use `C33 Design` to trigger the image generation.
 
25
 
26
  <Gallery />
27
 
28
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
29
 
30
+ ## Model description
31
+
32
+ **prithivMLmods/Flux-C33-Design-LoRA**
33
+
34
+ Image Processing Parameters
35
+
36
+ | Parameter | Value | Parameter | Value |
37
+ |---------------------------|--------|---------------------------|--------|
38
+ | LR Scheduler | constant | Noise Offset | 0.03 |
39
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
40
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
41
+ | Network Alpha | 32 | Repeat & Steps | 18 & 2450 |
42
+ | Epoch | 14 | Save Every N Epochs | 1 |
43
+
44
+ Labeling: florence2-en(natural language & English)
45
+
46
+ Total Images Used for Training : 17
47
+
48
+ ## Best Dimensions & Inference
49
+
50
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
51
+ |-----------------|------------------|---------------------------|
52
+ | 1280 x 832 | 3:2 | Best |
53
+ | 1024 x 1024 | 1:1 | Default |
54
+
55
+ ### Inference Range
56
+
57
+ - **Recommended Inference Steps:** 30–35
58
+
59
+ ## Setting Up
60
+ ```python
61
+ import torch
62
+ from pipelines import DiffusionPipeline
63
+
64
+ base_model = "black-forest-labs/FLUX.1-dev"
65
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
66
+
67
+ lora_repo = "prithivMLmods/Flux-C33-Design-LoRA"
68
+ trigger_word = "C33 Design"
69
+ pipe.load_lora_weights(lora_repo)
70
+
71
+ device = torch.device("cuda")
72
+ pipe.to(device)
73
+ ```
74
  ## Trigger words
75
 
76
  You should use `C33 Design` to trigger the image generation.