prithivMLmods commited on
Commit
01f38f1
1 Parent(s): 0d30436

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -0
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
+ Canopus-Liquid-Wallpaper-Art
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 | 27 |
38
+ | Epoch | 10 | 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/Canopus-Liquid-Wallpaper-Art", weight_name="Canopus-Liquid-Wallpaper-Minimalize-LoRA.safetensors", adapter_name="liquid")
58
+ pipe.set_adapters("liquid")
59
+ pipe.to("cuda")
60
+ ```
61
+
62
+ ## Trigger prompts
63
+
64
+ Illustration of Mountain climbers ascending a challenging peak. One-point perspective, Abstract background, Solarpunk theme, Lithography, Stencil effects, Caustics, UHD
65
+
66
+
67
+ Illustration of A starry night camp in the mountains. Low-angle view, Minimal background, Geometric shapes theme, Pottery, Split-complementary colors, Bicolored light, UHD
68
+
69
+
70
+ Illustration of A serene mountain stream or waterfall. L-cut, Diamond pattern background, Chibi, Gouache, Tetradic colors, Flickering light, UHD
71
+
72
+ | Parameter | Value |
73
+ |-----------------|---------------------------------------------------------------------------------------|
74
+ | Prompt | Illustration of A serene mountain stream or waterfall. L-cut, Diamond pattern background, Chibi, Gouache, Tetradic colors, Flickering light, UHD |
75
+ | Sampler | euler |
76
+
77
+
78
 
79
  ## Trigger words
80