prithivMLmods commited on
Commit
5cb127c
·
verified ·
1 Parent(s): a321d34

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -4
README.md CHANGED
@@ -4,14 +4,32 @@ tags:
4
  - lora
5
  - diffusers
6
  - template:diffusion-lora
 
7
  widget:
8
- - text: 'HDR, Captured at eye-level, a close-up shot of a young woman with dark brown hair and blue eyes. Her hair is styled in a braided bun, and shes wearing a black strapless dress with a black lace trim. She is wearing a gold necklace with a silver charm on it. The backdrop is blurred, and there are several lights hanging from the ceiling, adding a touch of color to the scene.'
 
 
 
 
 
9
  output:
10
  url: images/HDR1.png
11
- - text: 'HDR, Captured in a low-angle shot, a medium-sized man with dark brown hair and a goatee is seated on a chair. His eyes are a piercing blue, and his eyebrows are a darker shade of brown. His lips are a lighter shade of pink, and he has a serious expression on his face. He is wearing a gray sweater with a textured pattern on the left side of his chest. His sweater is a light gray, with a black stripe running down the center of the sweater. The backdrop is blurred, and a wooden chair is visible behind the man.'
 
 
 
 
 
 
 
12
  output:
13
  url: images/HDR2.png
14
- - text: 'HDR, a close-up shot of a womans face is adorned with a layer of snow, adding a touch of warmth to the scene. The womans eyes are closed, her lips are pursed in a deep pink shade, while her hair cascades over her shoulders. Her eyebrows are adorned with small, white snowflakes, adding depth to the composition. The background is blurred, creating a soft, blurred effect.'
 
 
 
 
 
15
  output:
16
  url: images/HDR3.png
17
  base_model: black-forest-labs/FLUX.1-dev
@@ -22,7 +40,47 @@ license: creativeml-openrail-m
22
 
23
  <Gallery />
24
 
 
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ## Trigger words
27
 
28
  You should use `HDR` to trigger the image generation.
@@ -32,4 +90,4 @@ You should use `HDR` to trigger the image generation.
32
 
33
  Weights for this model are available in Safetensors format.
34
 
35
- [Download](/prithivMLmods/Flux.1-Dev-LoRA-HDR-Realism/tree/main) them in the Files & versions tab.
 
4
  - lora
5
  - diffusers
6
  - template:diffusion-lora
7
+ - HDR
8
  widget:
9
+ - text: >-
10
+ HDR, Captured at eye-level, a close-up shot of a young woman with dark brown
11
+ hair and blue eyes. Her hair is styled in a braided bun, and shes wearing a
12
+ black strapless dress with a black lace trim. She is wearing a gold necklace
13
+ with a silver charm on it. The backdrop is blurred, and there are several
14
+ lights hanging from the ceiling, adding a touch of color to the scene.
15
  output:
16
  url: images/HDR1.png
17
+ - text: >-
18
+ HDR, Captured in a low-angle shot, a medium-sized man with dark brown hair
19
+ and a goatee is seated on a chair. His eyes are a piercing blue, and his
20
+ eyebrows are a darker shade of brown. His lips are a lighter shade of pink,
21
+ and he has a serious expression on his face. He is wearing a gray sweater
22
+ with a textured pattern on the left side of his chest. His sweater is a
23
+ light gray, with a black stripe running down the center of the sweater. The
24
+ backdrop is blurred, and a wooden chair is visible behind the man.
25
  output:
26
  url: images/HDR2.png
27
+ - text: >-
28
+ HDR, a close-up shot of a womans face is adorned with a layer of snow,
29
+ adding a touch of warmth to the scene. The womans eyes are closed, her lips
30
+ are pursed in a deep pink shade, while her hair cascades over her shoulders.
31
+ Her eyebrows are adorned with small, white snowflakes, adding depth to the
32
+ composition. The background is blurred, creating a soft, blurred effect.
33
  output:
34
  url: images/HDR3.png
35
  base_model: black-forest-labs/FLUX.1-dev
 
40
 
41
  <Gallery />
42
 
43
+ - Hosted Here🧨: https://huggingface.co/spaces/prithivMLmods/FLUX-LoRA-DLC
44
 
45
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
46
+
47
+ ## Model description
48
+
49
+ **prithivMLmods/Flux.1-Dev-LoRA-HDR-Realism**
50
+
51
+ Image Processing Parameters
52
+
53
+ | Parameter | Value | Parameter | Value |
54
+ |---------------------------|--------|---------------------------|--------|
55
+ | LR Scheduler | constant | Noise Offset | 0.03 |
56
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
57
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
58
+ | Network Alpha | 32 | Repeat & Steps | 19 & 2000|
59
+ | Epoch | 17 | Save Every N Epochs | 1 |
60
+
61
+ Labeling: florence2-en(natural language & English)
62
+
63
+ Total Images Used for Training : 14
64
+
65
+ ## Best Dimensions
66
+
67
+ - 1024 x 1024 (Default)
68
+
69
+ ## Setting Up
70
+ ```
71
+ import torch
72
+ from pipelines import DiffusionPipeline
73
+
74
+ base_model = "black-forest-labs/FLUX.1-dev"
75
+ pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
76
+
77
+ lora_repo = "prithivMLmods/Flux.1-Dev-LoRA-HDR-Realism"
78
+ trigger_word = "HDR"
79
+ pipe.load_lora_weights(lora_repo)
80
+
81
+ device = torch.device("cuda")
82
+ pipe.to(device)
83
+ ```
84
  ## Trigger words
85
 
86
  You should use `HDR` to trigger the image generation.
 
90
 
91
  Weights for this model are available in Safetensors format.
92
 
93
+ [Download](/prithivMLmods/Flux.1-Dev-LoRA-HDR-Realism/tree/main) them in the Files & versions tab.