prithivMLmods commited on
Commit
d374c0d
1 Parent(s): ccd8166

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -5
README.md CHANGED
@@ -25,7 +25,7 @@ license: creativeml-openrail-m
25
 
26
  ## Model description
27
 
28
- Canopus Photo Realism
29
 
30
  Image Processing Parameters
31
 
@@ -35,21 +35,42 @@ Image Processing Parameters
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
 
41
 
42
 
43
 
44
  ## Trigger prompts
45
 
46
- A man dressed in sunglasses and brown jacket, in the style of cypherpunk, timeless beauty, exacting precision, uhd image, aleksandr deyneka, matte background, leather/hide --ar 67:101 --v 5
47
 
48
 
49
- A studio portrait of a brunette model wearing a dress in front of a natural background --v 6.0 --style raw
50
 
51
 
52
- Man in the style of dark beige and brown, uhd image, youthful protagonists, nonrepresentational
53
 
54
  | Parameter | Value |
55
  |-----------------|---------------------------------------------------------------------------------------|
 
25
 
26
  ## Model description
27
 
28
+ Montuno Omega Anime
29
 
30
  Image Processing Parameters
31
 
 
35
  | Optimizer | AdamW | Multires Noise Discount | 0.1 |
36
  | Network Dim | 64 | Multires Noise Iterations | 10 |
37
  | Network Alpha | 32 | Repeat | 20 |
38
+ | Epoch | 15 | 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/Montuno-Omega-Anime-LoRA", weight_name="Montuno-Omega-Anime-LoRA.safetensors", adapter_name="rlms")
58
+ pipe.set_adapters("rlms")
59
+ pipe.to("cuda")
60
+ ```
61
 
62
 
63
 
64
 
65
  ## Trigger prompts
66
 
67
+ The face of a woman with brown eyes, in the style of yigal ozeri, light navy and light gray, patrick demarchelier, alayna lemmer, focus on joints/connections, caravaggism, studio light --ar 1:2 --stylize 750 --v 6
68
 
69
 
70
+ Anime male bartender in a black suit with a red shirt, with korean hairstyle, ilya kuvshinov style, white hair, urban male fanart, korean anime style illustration, korean anime art style, in an korean anime style, lofi male, in korean anime style, korean anime art style, korean anime style portrait
71
 
72
 
73
+ A woman dressed as a clown with red hair, in the style of magical girl, colorful moebius, light yellow and dark crimson, pencilsteampunk, kintsukuroi, loose and fluid, stylish costume design --ar 68:128 --stylize 750 --v 5.2
74
 
75
  | Parameter | Value |
76
  |-----------------|---------------------------------------------------------------------------------------|