prithivMLmods commited on
Commit
3c2f420
1 Parent(s): 99dce7b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +69 -6
README.md CHANGED
@@ -4,14 +4,36 @@ tags:
4
  - lora
5
  - diffusers
6
  - template:diffusion-lora
 
 
 
 
7
  widget:
8
- - text: 'A vibrant blue lightning bolt logo is depicted against a solid blacked background. The lightning bolt is sharp and angular, with glowing blue edges that appear to radiate energy. Small electric sparks surround the bolt, adding dynamic movement to the design. The contrast between the bold blue and the deep black background creates a powerful and electrifying effect, making the logo stand out vividly.'
 
 
 
 
 
 
9
  output:
10
  url: images/q1.webp
11
- - text: 'A sleek red flame logo is depicted against a deep blacked background. The flame has sharp, curved edges that taper to a fine point, with subtle gradients of red and orange, giving it a glowing, realistic effect. Small embers flicker around the flame, adding movement and intensity. The striking contrast between the fiery red and the dark black background creates a bold and captivating image that feels both warm and powerful.'
 
 
 
 
 
 
12
  output:
13
  url: images/q2.webp
14
- - text: 'A bold silver gear logo is depicted against a solid blacked background. The gear has sharp, metallic edges and intricate inner details that give it a realistic, industrial look. Light reflections on the gear add a gleaming effect, making it appear polished and three-dimensional. The stark contrast between the shiny silver and the dark black background creates a modern and powerful impression, giving the logo a sleek, mechanical feel.'
 
 
 
 
 
 
15
  output:
16
  url: images/q3.webp
17
  base_model: stabilityai/stable-diffusion-3.5-large
@@ -22,14 +44,55 @@ license: creativeml-openrail-m
22
 
23
  <Gallery />
24
 
 
25
 
26
- ## Trigger words
27
 
28
- You should use `blacked` to trigger the image generation.
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  ## Download model
32
 
33
  Weights for this model are available in Safetensors format.
34
 
35
- [Download](/prithivMLmods/SD3.5-Large-Minimal-Blacked-LoRA/tree/main) them in the Files & versions tab.
 
4
  - lora
5
  - diffusers
6
  - template:diffusion-lora
7
+ - SD3.5
8
+ - minimal-blacked
9
+ - visual-design
10
+ - stable-diffusion
11
  widget:
12
+ - text: >-
13
+ A vibrant blue lightning bolt logo is depicted against a solid blacked
14
+ background. The lightning bolt is sharp and angular, with glowing blue edges
15
+ that appear to radiate energy. Small electric sparks surround the bolt,
16
+ adding dynamic movement to the design. The contrast between the bold blue
17
+ and the deep black background creates a powerful and electrifying effect,
18
+ making the logo stand out vividly.
19
  output:
20
  url: images/q1.webp
21
+ - text: >-
22
+ A sleek red flame logo is depicted against a deep blacked background. The
23
+ flame has sharp, curved edges that taper to a fine point, with subtle
24
+ gradients of red and orange, giving it a glowing, realistic effect. Small
25
+ embers flicker around the flame, adding movement and intensity. The striking
26
+ contrast between the fiery red and the dark black background creates a bold
27
+ and captivating image that feels both warm and powerful.
28
  output:
29
  url: images/q2.webp
30
+ - text: >-
31
+ A bold silver gear logo is depicted against a solid blacked background. The
32
+ gear has sharp, metallic edges and intricate inner details that give it a
33
+ realistic, industrial look. Light reflections on the gear add a gleaming
34
+ effect, making it appear polished and three-dimensional. The stark contrast
35
+ between the shiny silver and the dark black background creates a modern and
36
+ powerful impression, giving the logo a sleek, mechanical feel.
37
  output:
38
  url: images/q3.webp
39
  base_model: stabilityai/stable-diffusion-3.5-large
 
44
 
45
  <Gallery />
46
 
47
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
48
 
49
+ ## Model description
50
 
51
+ **prithivMLmods/SD3.5-Large-Minimal-Blacked-LoRA**
52
 
53
+ Image Processing Parameters
54
+
55
+ | Parameter | Value | Parameter | Value |
56
+ |---------------------------|--------|---------------------------|--------|
57
+ | LR Scheduler | constant | Noise Offset | 0.03 |
58
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
59
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
60
+ | Network Alpha | 32 | Repeat & Steps | 18 & 1600 |
61
+ | Epoch | 10 | Save Every N Epochs | 1 |
62
+
63
+ Labeling: florence2-en(natural language & English)
64
+
65
+ Total Images Used for Training : 20 [ Hi-RES ]
66
+
67
+ ## Setting up
68
+
69
+ ```python
70
+ import torch
71
+ from diffusers import StableDiffusion3Pipeline
72
+
73
+ pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large", torch_dtype=torch.bfloat16)
74
+ pipe.load_lora_weights("prithivMLmods/SD3.5-Large-Minimal-Blacked-LoRA", weight_name="SD3.5-Large-Minimal-Blacked-LoRA.safetensors")
75
+ pipe.fuse_lora(lora_scale=1.0)
76
+ pipe.to("cuda")
77
+
78
+ prompt = "A bold silver gear logo is depicted against a solid blacked background. The gear has sharp, metallic edges and intricate inner details that give it a realistic, industrial look. Light reflections on the gear add a gleaming effect, making it appear polished and three-dimensional. The stark contrast between the shiny silver and the dark black background creates a modern and powerful impression, giving the logo a sleek, mechanical feel."
79
+ negative_prompt = "(lowres, low quality, worst quality)"
80
+
81
+ image = pipe(prompt=prompt,
82
+ negative_prompt=negative_prompt
83
+ num_inference_steps=24,
84
+ guidance_scale=4.0,
85
+ width=960, height=1280,
86
+ ).images[0]
87
+ image.save(f"example.jpg")
88
+ ```
89
+ ## Trigger words 🧨
90
+
91
+ > [!WARNING]
92
+ > **Trigger words:** You should use `blacked` to trigger the image generation.
93
 
94
  ## Download model
95
 
96
  Weights for this model are available in Safetensors format.
97
 
98
+ [Download](/prithivMLmods/SD3.5-Large-Minimal-Blacked-LoRA/tree/main) them in the Files & versions tab.