Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nd-4.0
|
3 |
+
tags:
|
4 |
+
- llama-cpp
|
5 |
+
- gguf-my-repo
|
6 |
+
---
|
7 |
+
|
8 |
+
# danielus/Mermaid-Phi-3-medium-128k-instruct-14B-Q8_0-GGUF
|
9 |
+
This model was converted to GGUF format from [`TroyDoesAI/Mermaid-Phi-3-medium-128k-instruct-14B`](https://huggingface.co/TroyDoesAI/Mermaid-Phi-3-medium-128k-instruct-14B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
10 |
+
Refer to the [original model card](https://huggingface.co/TroyDoesAI/Mermaid-Phi-3-medium-128k-instruct-14B) for more details on the model.
|
11 |
+
## Use with llama.cpp
|
12 |
+
Install llama.cpp through brew.
|
13 |
+
```bash
|
14 |
+
brew install ggerganov/ggerganov/llama.cpp
|
15 |
+
```
|
16 |
+
Invoke the llama.cpp server or the CLI.
|
17 |
+
CLI:
|
18 |
+
```bash
|
19 |
+
llama-cli --hf-repo danielus/Mermaid-Phi-3-medium-128k-instruct-14B-Q8_0-GGUF --model mermaid-phi-3-medium-128k-instruct-14b-q8_0.gguf -p "The meaning to life and the universe is"
|
20 |
+
```
|
21 |
+
Server:
|
22 |
+
```bash
|
23 |
+
llama-server --hf-repo danielus/Mermaid-Phi-3-medium-128k-instruct-14B-Q8_0-GGUF --model mermaid-phi-3-medium-128k-instruct-14b-q8_0.gguf -c 2048
|
24 |
+
```
|
25 |
+
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
26 |
+
```
|
27 |
+
git clone https://github.com/ggerganov/llama.cpp && \
|
28 |
+
cd llama.cpp && \
|
29 |
+
make && \
|
30 |
+
./main -m mermaid-phi-3-medium-128k-instruct-14b-q8_0.gguf -n 128
|
31 |
+
```
|