Doctor-Shotgun commited on
Commit
8315931
·
verified ·
1 Parent(s): 3f6449f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - deepseek-ai/DeepSeek-R1-0528
4
+ ---
5
+
6
+ This is a custom quant of [deepseek-ai/DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) that has the following:
7
+ - Q8_0 for the default quantization type (attention, shared experts, etc.)
8
+ - Q4_K for the FFN_UP and FFN_GATE tensors
9
+ - Q5_K for the FFN_DOWN tensors
10
+
11
+ The idea being that given the huge size of the FFN tensors compared to the rest of the tensors in the model, it should be possible to achieve a better quality while keeping the overall size of the entire model smaller compared to a similar naive quantization.
12
+
13
+ This is derived from the quant provided by [AesSedai](https://huggingface.co/AesSedai/DeepSeek-R1-0528-GGUF) with additional keys added for expert group selection.
14
+
15
+ Model is additionally split with `--no-tensor-first-split` to enable easier editing of metadata.