prithivMLmods commited on
Commit
cf10285
·
verified ·
1 Parent(s): c0ad11f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -2
README.md CHANGED
@@ -10,18 +10,64 @@ widget:
10
  url: images/1.png
11
  base_model: black-forest-labs/FLUX.1-dev
12
  instance_prompt: lucia character
13
- license: apache-2.0
 
 
14
  ---
 
 
 
15
  # Lucia_Gta6-Flux-LoRA
16
 
17
  <Gallery />
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  ## Trigger words
21
 
22
  You should use `lucia character` to trigger the image generation.
23
 
24
-
25
  ## Download model
26
 
27
  Weights for this model are available in Safetensors format.
 
10
  url: images/1.png
11
  base_model: black-forest-labs/FLUX.1-dev
12
  instance_prompt: lucia character
13
+ license: other
14
+ license_name: flux-1-dev-non-commercial-license
15
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
16
  ---
17
+
18
+ ![Untitled design.png](https://cdn-uploads.huggingface.co/production/uploads/65bb837dbfb878f46c77de4c/wWSFJ49qxmf2qKcpXwgvl.png)
19
+
20
  # Lucia_Gta6-Flux-LoRA
21
 
22
  <Gallery />
23
 
24
+ # Model description for Lucia_Gta6-Flux-LoRA
25
+
26
+ Image Processing Parameters
27
+
28
+ | Parameter | Value | Parameter | Value |
29
+ |---------------------------|--------|---------------------------|--------|
30
+ | LR Scheduler | constant | Noise Offset | 0.03 |
31
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
32
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
33
+ | Network Alpha | 32 | Repeat & Steps | 15 & 1800 |
34
+ | Epoch | 13 | Save Every N Epochs | 1 |
35
+
36
+ Labeling: florence2-en(natural language & English)
37
+
38
+ Total Images Used for Training : 14
39
+
40
+ ## Best Dimensions & Inference
41
+
42
+ | **Dimensions** | **Aspect Ratio** | **Recommendation** |
43
+ |-----------------|------------------|---------------------------|
44
+ | 1280 x 832 | 3:2 | Best |
45
+ | 1024 x 1024 | 1:1 | Default |
46
+
47
+ ### Inference Range
48
+
49
+ - **Recommended Inference Steps:** 30-35
50
+
51
+ ## Setting Up
52
+ ```python
53
+ import torch
54
+ from pipelines import DiffusionPipeline
55
+
56
+ base_model = "black-forest-labs/FLUX.1-dev"
57
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
58
+
59
+ lora_repo = "strangerzonehf/Lucia_Gta6-Flux-LoRA"
60
+ trigger_word = "lucia character"
61
+ pipe.load_lora_weights(lora_repo)
62
+
63
+ device = torch.device("cuda")
64
+ pipe.to(device)
65
+ ```
66
 
67
  ## Trigger words
68
 
69
  You should use `lucia character` to trigger the image generation.
70
 
 
71
  ## Download model
72
 
73
  Weights for this model are available in Safetensors format.