prithivMLmods
commited on
Commit
•
7e8261e
1
Parent(s):
31ba94c
Update README.md
Browse files
README.md
CHANGED
@@ -23,6 +23,58 @@ license: creativeml-openrail-m
|
|
23 |
|
24 |
<Gallery />
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
## Trigger words
|
28 |
|
|
|
23 |
|
24 |
<Gallery />
|
25 |
|
26 |
+
## Model description
|
27 |
+
|
28 |
+
Cars-Model-LoRA
|
29 |
+
|
30 |
+
Image Processing Parameters
|
31 |
+
|
32 |
+
| Parameter | Value | Parameter | Value |
|
33 |
+
|---------------------------|--------|---------------------------|--------|
|
34 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
35 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
36 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
37 |
+
| Network Alpha | 32 | Repeat | 20 |
|
38 |
+
| Epoch | 20 | Save Every N Epochs | 1 |
|
39 |
+
|
40 |
+
## SETTING-UP
|
41 |
+
|
42 |
+
```py
|
43 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(
|
44 |
+
"-------------xxxxxxxxx----------",
|
45 |
+
torch_dtype=torch.float16,
|
46 |
+
use_safetensors=True,
|
47 |
+
)
|
48 |
+
(or)
|
49 |
+
-----------------------------------------------------------
|
50 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(
|
51 |
+
"stabilityai/stable-diffusion-xl-base-1.0",
|
52 |
+
torch_dtype=torch.float16,
|
53 |
+
use_safetensors=True,
|
54 |
+
)
|
55 |
+
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
|
56 |
+
|
57 |
+
pipe.load_lora_weights("prithivMLmods/Canes-Cars-Model-LoRA", weight_name="Canes-Cars-Model-LoRA.safetensors", adapter_name="car")
|
58 |
+
pipe.set_adapters("car")
|
59 |
+
pipe.to("cuda")
|
60 |
+
```
|
61 |
+
|
62 |
+
|
63 |
+
## Trigger prompts
|
64 |
+
|
65 |
+
A black Ford Mustang was photographed on the side of an abandoned road in British Columbia, Canada surrounded by trees and grass. The car is driving fast down the dirt road at sunset. Light beams shine from its headlights. Shot in the style of Peter Lindbergh for Aman Resorts --ar 85:128 --v 6.0 --style raw
|
66 |
+
|
67 |
+
|
68 |
+
A car's headlights illuminate part of its body. This scene creates a tranquil atmosphere with soft lighting and warm tones, in the style of minimalism. --ar 85:128 --v 6.0 --style raw
|
69 |
+
|
70 |
+
|
71 |
+
An vector illustration of an old car on the road, in a retro poster style with orange and yellow colors, featuring vintage cars from past years, set against a backdrop of mountains, trees, clouds, and sunset. The scene captures a sense of adventure as if moving through time in a classic automotive journey. It's an appealing design that would be perfect for travel-themed projects or packaging materials related to vintage vehicles, in the style of retro posters. --ar 128:89 --v 6.0 --style raw
|
72 |
+
|
73 |
+
| Parameter | Value |
|
74 |
+
|-----------------|---------------------------------------------------------------------------------------|
|
75 |
+
| Prompt | A car's headlights illuminate part of its body. This scene creates a tranquil atmosphere with soft lighting and warm tones, in the style of minimalism. --ar 85:128 --v 6.0 --style raw |
|
76 |
+
| Sampler | euler |
|
77 |
+
|
78 |
|
79 |
## Trigger words
|
80 |
|