bloomer010 commited on
Commit
a4d873c
·
verified ·
1 Parent(s): 3dc86c3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,27 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+ ## llama.cpp compatibility
5
+
6
+ This model currently requires the BailingMoE3 implementation from:
7
+
8
+ - Upstream PR: https://github.com/ggml-org/llama.cpp/pull/26608
9
+ - Fork branch: https://github.com/aetherbird/llama.cpp/tree/bailingmoe3-support
10
+ - Tested commit: `936fbf4673e83be7c53b4fa694fe3c20416707a9`
11
+
12
+ Build:
13
+
14
+ ```bash
15
+ git clone https://github.com/aetherbird/llama.cpp.git
16
+ cd llama.cpp
17
+ git checkout 936fbf4673e83be7c53b4fa694fe3c20416707a9
18
+
19
+ cmake -B build -DGGML_CUDA=ON -DCMAKE_BUILD_TYPE=Release
20
+ cmake --build build --config Release -j
21
+
22
+ Run with MTP speculative decoding:
23
+
24
+ ./build/bin/llama-cli \
25
+ -m Ling-3.0-flash-MXFP4_MOE.gguf \
26
+ --spec-type draft-mtp \
27
+ --spec-draft-n-max 3