prithivMLmods commited on
Commit
11e3829
1 Parent(s): 9278788

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md CHANGED
@@ -25,6 +25,41 @@ license: creativeml-openrail-m
25
  <Gallery />
26
 
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  ## Trigger words
29
 
30
  You should use `art` to trigger the image generation.
@@ -32,6 +67,11 @@ You should use `art` to trigger the image generation.
32
  You should use `illustration` to trigger the image generation.
33
 
34
 
 
 
 
 
 
35
  ## Download model
36
 
37
  Weights for this model are available in Safetensors format.
 
25
  <Gallery />
26
 
27
 
28
+ ## Model description
29
+
30
+ Pegasi-Beta-GTA-LoRA
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 | 20 |
39
+ | Epoch | 15 | Save Every N Epochs | 1 |
40
+
41
+
42
+ ## SETTING-UP
43
+ ```py
44
+ pipe = StableDiffusionXLPipeline.from_pretrained(
45
+ "------------------------------",
46
+ torch_dtype=torch.float16,
47
+ use_safetensors=True,
48
+ )
49
+ (or)
50
+ -----------------------------------------------------------
51
+ pipe = StableDiffusionXLPipeline.from_pretrained(
52
+ "stabilityai/stable-diffusion-xl-base-1.0",
53
+ torch_dtype=torch.float16,
54
+ use_safetensors=True,
55
+ )
56
+ pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
57
+
58
+ pipe.load_lora_weights("prithivMLmods/Canopus-Art-Medium-LoRA", weight_name="prithivMLmods/Canopus-Art-Medium-LoRA.safetensors", adapter_name="mdm")
59
+ pipe.set_adapters("mdm")
60
+ pipe.to("cuda")
61
+ ```
62
+
63
  ## Trigger words
64
 
65
  You should use `art` to trigger the image generation.
 
67
  You should use `illustration` to trigger the image generation.
68
 
69
 
70
+ | Parameter | Value |
71
+ |-----------------|---------------------------------------------------------------------------------------|
72
+ | Prompt | An illustration of a deer with large antlers, in the style of 18th century, dark gray and light brown, realistic renderings of the human form, 1860–1969, bengal school of art, die brücke, angura kei --ar 258:197 --v 5.1 --style raw |
73
+ | Sampler | euler |
74
+
75
  ## Download model
76
 
77
  Weights for this model are available in Safetensors format.