Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-4.0
|
3 |
+
library_name: transformers
|
4 |
+
tags:
|
5 |
+
- unsloth
|
6 |
+
- book
|
7 |
+
- llama-cpp
|
8 |
+
- gguf-my-repo
|
9 |
+
---
|
10 |
+
|
11 |
+
# DavidAU/dragonwar-7b-alpha-Q6_K-GGUF
|
12 |
+
This model was converted to GGUF format from [`maldv/dragonwar-7b-alpha`](https://huggingface.co/maldv/dragonwar-7b-alpha) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
13 |
+
Refer to the [original model card](https://huggingface.co/maldv/dragonwar-7b-alpha) for more details on the model.
|
14 |
+
## Use with llama.cpp
|
15 |
+
|
16 |
+
Install llama.cpp through brew.
|
17 |
+
|
18 |
+
```bash
|
19 |
+
brew install ggerganov/ggerganov/llama.cpp
|
20 |
+
```
|
21 |
+
Invoke the llama.cpp server or the CLI.
|
22 |
+
|
23 |
+
CLI:
|
24 |
+
|
25 |
+
```bash
|
26 |
+
llama-cli --hf-repo DavidAU/dragonwar-7b-alpha-Q6_K-GGUF --model dragonwar-7b-alpha.Q6_K.gguf -p "The meaning to life and the universe is"
|
27 |
+
```
|
28 |
+
|
29 |
+
Server:
|
30 |
+
|
31 |
+
```bash
|
32 |
+
llama-server --hf-repo DavidAU/dragonwar-7b-alpha-Q6_K-GGUF --model dragonwar-7b-alpha.Q6_K.gguf -c 2048
|
33 |
+
```
|
34 |
+
|
35 |
+
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.
|
36 |
+
|
37 |
+
```
|
38 |
+
git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m dragonwar-7b-alpha.Q6_K.gguf -n 128
|
39 |
+
```
|