prithivMLmods
commited on
Commit
•
9dea733
1
Parent(s):
54cbf88
Update README.md
Browse files
README.md
CHANGED
@@ -22,11 +22,55 @@ license: creativeml-openrail-m
|
|
22 |
|
23 |
<Gallery />
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
## Trigger words
|
27 |
|
28 |
You should use `photorealistic` to trigger the image generation.
|
29 |
|
|
|
30 |
|
31 |
## Download model
|
32 |
|
|
|
22 |
|
23 |
<Gallery />
|
24 |
|
25 |
+
**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
|
26 |
+
|
27 |
+
## Model description
|
28 |
+
|
29 |
+
**prithivMLmods/SD3.5-Large-Photorealistic-LoRA**
|
30 |
+
|
31 |
+
Image Processing Parameters
|
32 |
+
|
33 |
+
| Parameter | Value | Parameter | Value |
|
34 |
+
|---------------------------|--------|---------------------------|--------|
|
35 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
36 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
37 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
38 |
+
| Network Alpha | 32 | Repeat & Steps | 20 & 1.5K |
|
39 |
+
| Epoch | 10 | Save Every N Epochs | 1 |
|
40 |
+
|
41 |
+
Labeling: florence2-en(natural language & English)
|
42 |
+
|
43 |
+
Total Images Used for Training : 40
|
44 |
+
|
45 |
+
## Setting up
|
46 |
+
|
47 |
+
```python
|
48 |
+
import torch
|
49 |
+
from diffusers import StableDiffusion3Pipeline
|
50 |
+
|
51 |
+
pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large", torch_dtype=torch.bfloat16)
|
52 |
+
pipe.load_lora_weights("prithivMLmods/SD3.5-Large-Photorealistic-LoRA", weight_name="Photorealistic-SD3.5-Large-LoRA.safetensors")
|
53 |
+
pipe.fuse_lora(lora_scale=1.0)
|
54 |
+
pipe.to("cuda")
|
55 |
+
|
56 |
+
prompt = "Man in the style of dark beige and brown, uhd image, youthful protagonists, nonrepresentational photography"
|
57 |
+
negative_prompt = "(lowres, low quality, worst quality)"
|
58 |
+
|
59 |
+
image = pipe(prompt=prompt,
|
60 |
+
negative_prompt=negative_prompt
|
61 |
+
num_inference_steps=24,
|
62 |
+
guidance_scale=4.0,
|
63 |
+
width=960, height=1280,
|
64 |
+
).images[0]
|
65 |
+
image.save(f"example.jpg")
|
66 |
+
```
|
67 |
+
|
68 |
|
69 |
## Trigger words
|
70 |
|
71 |
You should use `photorealistic` to trigger the image generation.
|
72 |
|
73 |
+
You should use `photography` to trigger the image generation.
|
74 |
|
75 |
## Download model
|
76 |
|