Update README.md
Browse files
README.md
CHANGED
|
@@ -4,6 +4,7 @@ base_model:
|
|
| 4 |
- inclusionAI/Ring-mini-2.0
|
| 5 |
---
|
| 6 |
|
|
|
|
| 7 |
## Introduction
|
| 8 |
|
| 9 |
Use https://github.com/im0qianqian/llama.cpp to quantize.
|
|
@@ -12,10 +13,15 @@ For model inference, please download our release package from this url https://g
|
|
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
-
|
| 16 |
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
|
| 21 |
## Demo
|
|
@@ -23,3 +29,11 @@ Let's look forward to the following PR being merged:
|
|
| 23 |

|
| 24 |
|
| 25 |

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- inclusionAI/Ring-mini-2.0
|
| 5 |
---
|
| 6 |
|
| 7 |
+
|
| 8 |
## Introduction
|
| 9 |
|
| 10 |
Use https://github.com/im0qianqian/llama.cpp to quantize.
|
|
|
|
| 13 |
|
| 14 |
|
| 15 |
|
| 16 |
+
## Quick start
|
| 17 |
|
| 18 |
+
```bash
|
| 19 |
+
# Use a local model file
|
| 20 |
+
llama-cli -m my_model.gguf
|
| 21 |
+
|
| 22 |
+
# Launch OpenAI-compatible API server
|
| 23 |
+
llama-server -m my_model.gguf
|
| 24 |
+
```
|
| 25 |
|
| 26 |
|
| 27 |
## Demo
|
|
|
|
| 29 |

|
| 30 |
|
| 31 |

|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
## PR
|
| 35 |
+
|
| 36 |
+
Let's look forward to the following PR being merged:
|
| 37 |
+
|
| 38 |
+
- [#16063 model : add BailingMoeV2 support](https://github.com/ggml-org/llama.cpp/pull/16063)
|
| 39 |
+
- [#16028 Add support for Ling v2](https://github.com/ggml-org/llama.cpp/pull/16028)
|