chillpixel commited on
Commit
fd54b4b
β€’
1 Parent(s): adfa382

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -7
README.md CHANGED
@@ -29,12 +29,25 @@ inference: true
29
 
30
  I hope that Blacklight Makeup's radiant glow inspires you to experiment, to challenge norms, and to create beauty that transcends the ordinary!
31
 
32
- ### INSTRUCTIONS:
 
 
 
 
 
 
 
 
 
 
 
 
 
33
 
34
  **Example prompt:** `Portrait photo of a kitty cat with blacklight makeup, fierce eyes, light bokeh, sharp focus, soft lighting, detailed, intricate, elegant, vibrant colors, masterpiece, cinematic, 8k`
35
 
36
- - trigger words: `with blacklight makeup`
37
- - `<lora:blacklight_makeup_v1:1>`
38
  - **2:3** β€” 832x1248
39
  - **16:9** β€” 1360x768
40
  - **1:1** β€” 1024x1024
@@ -58,12 +71,15 @@ pipe.scheduler = EulerDiscreteScheduler.from_config(
58
 
59
  pipe.to("cuda")
60
 
61
- pipe.load_lora_weights("chillpixel/blacklight-makeup-sdxl-lora")
 
 
 
62
 
63
  image = pipe(
64
- prompt="portrait photo of a kitty cat with blacklight makeup, fierce eyes, light bokeh, sharp focus, soft lighting, detailed, intricate, elegant, vibrant colors, masterpiece, cinematic, 8k",
65
- num_inference_steps=40,
66
- guidance_scale=8,
67
  width=832,
68
  height=1248,
69
  ).images[0]
 
29
 
30
  I hope that Blacklight Makeup's radiant glow inspires you to experiment, to challenge norms, and to create beauty that transcends the ordinary!
31
 
32
+ ### What's new in Version 2?
33
+
34
+ I've retrained it with *improved captions and parameters*, which brings:
35
+
36
+ - simpler trigger words: `blacklight makeup`
37
+ - better output quality
38
+ - reduced file size
39
+ - improved compatibility with other LoRAs
40
+
41
+ ### What's next?
42
+
43
+ Enhancing the dataset while also experimenting with new training techniques.
44
+
45
+ ### How to use:
46
 
47
  **Example prompt:** `Portrait photo of a kitty cat with blacklight makeup, fierce eyes, light bokeh, sharp focus, soft lighting, detailed, intricate, elegant, vibrant colors, masterpiece, cinematic, 8k`
48
 
49
+ - trigger words: `blacklight makeup`
50
+ - `<lora:blacklight_makeup_v2:1>`
51
  - **2:3** β€” 832x1248
52
  - **16:9** β€” 1360x768
53
  - **1:1** β€” 1024x1024
 
71
 
72
  pipe.to("cuda")
73
 
74
+ pipe.load_lora_weights(
75
+ "chillpixel/blacklight-makeup-sdxl-lora",
76
+ weight_name="blacklight_makeup_v2.safetensors",
77
+ )
78
 
79
  image = pipe(
80
+ prompt="Portrait of woman with blacklight makeup, fantasy, highly detailed, digital painting, artstation, concept art, sharp focus, illustration, art by Tony Sart and artgerm and randy vargas",
81
+ num_inference_steps=35,
82
+ guidance_scale=6,
83
  width=832,
84
  height=1248,
85
  ).images[0]