prithivMLmods commited on
Commit
3fe619f
1 Parent(s): 61e41a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md CHANGED
@@ -39,7 +39,47 @@ license: creativeml-openrail-m
39
 
40
  <Gallery />
41
 
 
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  ## Trigger words
44
 
45
  You should use `Digital Chaos` to trigger the image generation.
 
39
 
40
  <Gallery />
41
 
42
+ - Hosted Here🧨: https://huggingface.co/spaces/prithivMLmods/FLUX-LoRA-DLC
43
 
44
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
45
+
46
+ ## Model description
47
+
48
+ **prithivMLmods/Digital-Chaos-Flux-LoRA**
49
+
50
+ Image Processing Parameters
51
+
52
+ | Parameter | Value | Parameter | Value |
53
+ |---------------------------|--------|---------------------------|--------|
54
+ | LR Scheduler | constant | Noise Offset | 0.03 |
55
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
56
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
57
+ | Network Alpha | 32 | Repeat & Steps | 22 & 2170|
58
+ | Epoch | 15 | Save Every N Epochs | 1 |
59
+
60
+ Labeling: florence2-en(natural language & English)
61
+
62
+ Total Images Used for Training : 17 [Hi-Res]
63
+
64
+ ## Best Dimensions
65
+
66
+ - 1024 x 1024 (Default)
67
+
68
+ ## Setting Up
69
+ ```
70
+ import torch
71
+ from pipelines import DiffusionPipeline
72
+
73
+ base_model = "black-forest-labs/FLUX.1-dev"
74
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
75
+
76
+ lora_repo = "prithivMLmods/Digital-Chaos-Flux-LoRA"
77
+ trigger_word = "Digital Chaos"
78
+ pipe.load_lora_weights(lora_repo)
79
+
80
+ device = torch.device("cuda")
81
+ pipe.to(device)
82
+ ```
83
  ## Trigger words
84
 
85
  You should use `Digital Chaos` to trigger the image generation.