prithivMLmods commited on
Commit
29ae3e7
1 Parent(s): 37a9331

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md CHANGED
@@ -32,6 +32,58 @@ license: creativeml-openrail-m
32
 
33
  <Gallery />
34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  ## Trigger words
37
 
 
32
 
33
  <Gallery />
34
 
35
+ ## Model description
36
+
37
+ Alpha-DW
38
+
39
+ Image Processing Parameters
40
+
41
+ | Parameter | Value | Parameter | Value |
42
+ |---------------------------|--------|---------------------------|--------|
43
+ | LR Scheduler | constant | Noise Offset | 0.03 |
44
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
45
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
46
+ | Network Alpha | 32 | Repeat | 20 |
47
+ | Epoch | 15 | Save Every N Epochs | 1 |
48
+
49
+ ## SETTING-UP
50
+
51
+ ```py
52
+ pipe = StableDiffusionXLPipeline.from_pretrained(
53
+ "-------------xxxxxxxxx----------",
54
+ torch_dtype=torch.float16,
55
+ use_safetensors=True,
56
+ )
57
+ (or)
58
+ -----------------------------------------------------------
59
+ pipe = StableDiffusionXLPipeline.from_pretrained(
60
+ "stabilityai/stable-diffusion-xl-base-1.0",
61
+ torch_dtype=torch.float16,
62
+ use_safetensors=True,
63
+ )
64
+ pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
65
+
66
+ pipe.load_lora_weights("prithivMLmods/Canopus-Realism-LoRA", weight_name="Canopus-Realism-LoRA.safetensors", adapter_name="rlms")
67
+ pipe.set_adapters("rlms")
68
+ pipe.to("cuda")
69
+ ```
70
+
71
+
72
+ ## Trigger prompts
73
+
74
+ Hyper-realistic digital portrait of Logan, known as Wolverine, rendered with Dan Hipp's trademark blending of photo-realism and fantastical textures. Wolverine's grizzled face and muscular physique displayed with forensic detail, minor scars and bruises lending gritty verisimilitude. His adamantium claws extended in a combative stance, razor-sharp steel glinting under neon signs of a gritty alleyway. Subtle luminescent threads pulse through muscles and between armor plating like circuitry.
75
+
76
+
77
+ Deadpool of Marvel, 8K, masterpiece, octane render, ray-tracing
78
+
79
+
80
+ Wolverine in his yellow suit character concept art by Roberto Ferri, epic shot, intricate details, 4k, uhd, dramatic lighting
81
+
82
+ | Parameter | Value |
83
+ |-----------------|---------------------------------------------------------------------------------------|
84
+ | Prompt | Deadpool of Marvel, 8K, masterpiece, octane render, ray-tracing |
85
+ | Sampler | euler |
86
+
87
 
88
  ## Trigger words
89