prithivMLmods commited on
Commit
4e63fbc
β€’
1 Parent(s): eda2075

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -5
README.md CHANGED
@@ -7,14 +7,29 @@ tags:
7
  - stable-diffusion-3.5-large-turbo
8
  - hyper-realistic
9
  - realism
 
10
  widget:
11
- - text: 'Hyper Realistic, dark haired woman is standing in front of orange light, in glossy transparent plastic futuristic raincoat, short hair, volumetric lighting, cinematic angle, glamour vibrant.'
 
 
 
12
  output:
13
  url: images/222.webp
14
- - text: 'Photograph of two young men, one with short blonde hair and the other with brown hair, standing in front of mountains and wearing old West-style and tank tops, abs, fit, The image is in a vintage black-and-white photography style, in the style of Richard Avedon. --v 6. 1 --ar 113:128'
 
 
 
 
15
  output:
16
  url: images/000.webp
17
- - text: 'A photorealistic portrait of a 22-year-old Indian woman smiles confidently at the camera, with long, straight black hair and warm brown eyes. She wears a yet casual dress that combines comfort and style, posed in a full-body shot with her hands casually resting at her sides, showcasing a stylish watch on her left wrist. The image features high detail and quality, captured in soft, natural lighting that accentuates her approachable expression as she stands in a modern urban environment.'
 
 
 
 
 
 
 
18
  output:
19
  url: images/444.webp
20
  base_model: stabilityai/stable-diffusion-3.5-large-turbo
@@ -25,11 +40,65 @@ license: creativeml-openrail-m
25
 
26
  <Gallery />
27
 
 
28
 
29
- ## Trigger words
30
 
31
- You should use `hyper realistic` to trigger the image generation.
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
 
34
  ## Download model
35
 
 
7
  - stable-diffusion-3.5-large-turbo
8
  - hyper-realistic
9
  - realism
10
+ - epic-realism
11
  widget:
12
+ - text: >-
13
+ Hyper Realistic, dark haired woman is standing in front of orange light, in
14
+ glossy transparent plastic futuristic raincoat, short hair, volumetric
15
+ lighting, cinematic angle, glamour vibrant.
16
  output:
17
  url: images/222.webp
18
+ - text: >-
19
+ Photograph of two young men, one with short blonde hair and the other with
20
+ brown hair, standing in front of mountains and wearing old West-style and
21
+ tank tops, abs, fit, The image is in a vintage black-and-white photography
22
+ style, in the style of Richard Avedon. --v 6. 1 --ar 113:128
23
  output:
24
  url: images/000.webp
25
+ - text: >-
26
+ A photorealistic portrait of a 22-year-old Indian woman smiles confidently
27
+ at the camera, with long, straight black hair and warm brown eyes. She wears
28
+ a yet casual dress that combines comfort and style, posed in a full-body
29
+ shot with her hands casually resting at her sides, showcasing a stylish
30
+ watch on her left wrist. The image features high detail and quality,
31
+ captured in soft, natural lighting that accentuates her approachable
32
+ expression as she stands in a modern urban environment.
33
  output:
34
  url: images/444.webp
35
  base_model: stabilityai/stable-diffusion-3.5-large-turbo
 
40
 
41
  <Gallery />
42
 
43
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
44
 
45
+ ## Model description
46
 
47
+ **prithivMLmods/SD3.5-Large-Turbo-HyperRealistic-LoRA**
48
 
49
+ Image Processing Parameters
50
+
51
+ | Parameter | Value | Parameter | Value |
52
+ |---------------------------|--------|---------------------------|--------|
53
+ | LR Scheduler | constant | Noise Offset | 0.03 |
54
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
55
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
56
+ | Network Alpha | 32 | Repeat & Steps | 20 & 2.2k |
57
+ | Epoch | 15 | Save Every N Epochs | 1 |
58
+
59
+ Labeling: florence2-en(natural language & English)
60
+
61
+ Total Images Used for Training : 30
62
+
63
+ ## Sample Image + Prompt
64
+
65
+ ![SD3.5-Large-Turbo-HyperRealistic-LoRA](images/333.webp)
66
+
67
+ | **Prompt** |
68
+ |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
69
+ | Beautiful girl standing with beautiful vally in background, age 20, black short hair, waist shot, dynamic pose, smiling, dressed in fashion outfit, beautiful eyes, sweet makeup, 35mm lens, beautiful lighting, photorealistic, soft focus, kodak portra 800, 8k. |
70
+
71
+ ## App File Structure
72
+
73
+ /project-root/
74
+
75
+ β”œβ”€β”€ .gitattributes
76
+ β”œβ”€β”€ README.md
77
+ β”œβ”€β”€ app.py
78
+ β”œβ”€β”€ pythonproject.py
79
+
80
+
81
+ ## Setting Up
82
+ ```
83
+ from diffusers import DiffusionPipeline
84
+ import torch
85
+
86
+ device = "cuda" if torch.cuda.is_available() else "cpu"
87
+ model_repo_id = "stabilityai/stable-diffusion-3.5-large-turbo"
88
+
89
+ torch_dtype = torch.bfloat16 if torch.cuda.is_available() else torch.float32
90
+
91
+ pipe = DiffusionPipeline.from_pretrained(model_repo_id, torch_dtype=torch_dtype)
92
+ pipe = pipe.to(device)
93
+
94
+ pipe.load_lora_weights("prithivMLmods/SD3.5-Large-Turbo-HyperRealistic-LoRA", weight_name="SD3.5-4Step-Large-Turbo-HyperRealistic-LoRA.safetensors")
95
+ trigger_word = "hyper realistic" # Specify trigger word for LoRA
96
+ pipe.fuse_lora(lora_scale=1.0))
97
+ ```
98
+ ## Trigger words 🧨
99
+
100
+ > [!WARNING]
101
+ > **Trigger words:** You should use `hyper realistic` to trigger the image generation.
102
 
103
  ## Download model
104