Steward commited on
Commit
ae3fa73
1 Parent(s): 1c69267

added fp16 model format and docs

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ LCM_Dreamshaper_v7-f16.gguf filter=lfs diff=lfs merge=lfs -text
LCM_Dreamshaper_v7-f16.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0642060766117fdeb8cae0ccdc73ee974ac5779be1112d0a82f2b965bbd00e15
3
+ size 2134675232
README.md CHANGED
@@ -1,3 +1,24 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Latent Consistency Model
2
+
3
+ Original model: [LCM_Dreamshaper_v7](https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7)
4
+
5
+ This gguf format is just supported by [stable-diffusion.cpp](https://github.com/leejet/stable-diffusion.cpp)
6
+
7
+ ## Requeriments:
8
+
9
+ ### fp16 model:
10
+
11
+ Disk Space: 2GB
12
+
13
+ RAM: 2 GB
14
+
15
+ Quantized model formats will be added soon.
16
+
17
+ Test:
18
+
19
+ ```bash
20
+ sd -m LCM_Dreamshaper_v7-f16.gguf -p "Self-portrait oil painting, a beautiful cyborg with golden hair, 8k" --steps 4 --cfg-scale 1.0 --sampling-method lcm
21
+ ```
22
+
23
+ ![output](lcm-dream-output.png)
24
+
lcm-dream-output.png ADDED