File size: 3,147 Bytes
aac4766
 
 
 
 
 
74e41cc
 
aac4766
74e41cc
 
 
 
 
 
b3e333a
 
74e41cc
 
 
aac4766
54cbf88
74e41cc
 
 
 
 
aac4766
54cbf88
aac4766
 
 
 
 
 
 
 
9dea733
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
aac4766
ff45ad7
aac4766
 
 
9dea733
aac4766
 
 
 
 
74e41cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
tags:
- text-to-image
- lora
- diffusers
- template:diffusion-lora
- Photorealistic
- stable-diffusion-3.5-large
widget:
- text: >-
    A photorealistic portrait of a young woman with short dark brown hair,
    wearing a grey spaghetti-strap top, standing outdoors in soft daylight. The
    background includes a blurred pool and greenery, creating a serene and
    summery atmosphere. Warm lighting highlights her natural beauty and relaxed
    expression.
  output:
    url: images/3.webp
- text: >-
    Man in the style of dark beige and brown, uhd image, youthful protagonists,
    nonrepresentational photography
  output:
    url: images/55.webp
- text: >-
    Black and white photography in style by Bruce Davidson, fashion editorial,
    dark haired woman of long exposure photography through artistic lens, 
    highres, realistic photo, professional photography, cinematic angle, dynamic
    light back shining, bokeh
  output:
    url: images/33.webp
base_model: stabilityai/stable-diffusion-3.5-large
instance_prompt: photorealistic
license: creativeml-openrail-m
---
# SD3.5-Large-Photorealistic-LoRA

<Gallery />

**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**

## Model description 

**prithivMLmods/SD3.5-Large-Photorealistic-LoRA**

Image Processing Parameters 

| Parameter                 | Value  | Parameter                 | Value  |
|---------------------------|--------|---------------------------|--------|
| LR Scheduler              | constant | Noise Offset              | 0.03   |
| Optimizer                 | AdamW  | Multires Noise Discount   | 0.1    |
| Network Dim               | 64     | Multires Noise Iterations | 10     |
| Network Alpha             | 32     | Repeat & Steps           | 20 & 1.5K |
| Epoch                     | 10     | Save Every N Epochs       | 1      |

    Labeling: florence2-en(natural language & English)
    
    Total Images Used for Training : 40
    
## Setting up

```python
import torch
from diffusers import StableDiffusion3Pipeline

pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large", torch_dtype=torch.bfloat16)
pipe.load_lora_weights("prithivMLmods/SD3.5-Large-Photorealistic-LoRA", weight_name="Photorealistic-SD3.5-Large-LoRA.safetensors")
pipe.fuse_lora(lora_scale=1.0)
pipe.to("cuda")

prompt = "Man in the style of dark beige and brown, uhd image, youthful protagonists, nonrepresentational photography"
negative_prompt = "(lowres, low quality, worst quality)"

image = pipe(prompt=prompt,
             negative_prompt=negative_prompt
             num_inference_steps=24, 
             guidance_scale=4.0,
             width=960, height=1280,
            ).images[0]
image.save(f"example.jpg")
```


## Trigger words 🧨

You should use `photorealistic` to trigger the image generation.

You should use `photography` to trigger the image generation.

## Download model

Weights for this model are available in Safetensors format.

[Download](/prithivMLmods/SD3.5-Large-Photorealistic-LoRA/tree/main) them in the Files & versions tab.