digiplay commited on
Commit
959cc60
·
1 Parent(s): 714c178

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -1,3 +1,20 @@
1
  ---
2
  license: other
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: other
3
  ---
4
+
5
+ you can apply VAE to get better color,
6
+
7
+ example codes:
8
+
9
+
10
+ #VAE
11
+ from diffusers.models import AutoencoderKL
12
+
13
+ vae = AutoencoderKL.from_pretrained("stabilityai/sd-vae-ft-mse")
14
+
15
+ modelid="digiplay/kotosmix_diffusers"
16
+
17
+ pipe = DiffusionPipeline.from_pretrained(modelid, vae=vae)
18
+
19
+
20
+