prithivMLmods commited on
Commit
2685f2f
·
verified ·
1 Parent(s): 3749f69

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -1
README.md CHANGED
@@ -24,12 +24,50 @@ license: apache-2.0
24
 
25
  <Gallery />
26
 
 
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  ## Trigger words
29
 
30
  You should use `capybara hf` to trigger the image generation.
31
 
32
-
33
  ## Download model
34
 
35
  Weights for this model are available in Safetensors format.
 
24
 
25
  <Gallery />
26
 
27
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
28
 
29
+ ## Model description
30
+
31
+ **prithivMLmods/Flux-Super-Capybara-HF**
32
+
33
+ Image Processing Parameters
34
+
35
+ | Parameter | Value | Parameter | Value |
36
+ |---------------------------|--------|---------------------------|--------|
37
+ | LR Scheduler | constant | Noise Offset | 0.03 |
38
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
39
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
40
+ | Network Alpha | 32 | Repeat & Steps | 22 & 2900 |
41
+ | Epoch | 15 | Save Every N Epochs | 1 |
42
+
43
+ Labeling: florence2-en(natural language & English)
44
+
45
+ Total Images Used for Training : 20
46
+
47
+ ## Best Dimensions
48
+
49
+ - 768 x 1024 (Best)
50
+ - 1024 x 1024 (Default)
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/Flux-Super-Capybara-HF"
61
+ trigger_word = "capybara hf"
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 `capybara hf` to trigger the image generation.
70
 
 
71
  ## Download model
72
 
73
  Weights for this model are available in Safetensors format.