Transformers
GGUF
Japanese
mergekit
Merge
Not-For-All-Audiences
nsfw
llama-cpp
gguf-my-repo
Inference Endpoints
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- ja
|
4 |
+
license: apache-2.0
|
5 |
+
library_name: transformers
|
6 |
+
tags:
|
7 |
+
- mergekit
|
8 |
+
- merge
|
9 |
+
- not-for-all-audiences
|
10 |
+
- nsfw
|
11 |
+
- llama-cpp
|
12 |
+
- gguf-my-repo
|
13 |
+
base_model:
|
14 |
+
- Aratako/Antler-7B-RP-v3
|
15 |
+
- Aratako/Japanese-Starling-ChatV-7B-RP
|
16 |
+
- senseable/WestLake-7B-v2
|
17 |
+
- SanjiWatsuki/Kunoichi-DPO-v2-7B
|
18 |
+
- SanjiWatsuki/Silicon-Maid-7B
|
19 |
+
- SanjiWatsuki/Loyal-Macaroni-Maid-7B
|
20 |
+
---
|
21 |
+
|
22 |
+
# DavidAU/AntlerStar-RP-Q6_K-GGUF
|
23 |
+
This model was converted to GGUF format from [`Aratako/AntlerStar-RP`](https://huggingface.co/Aratako/AntlerStar-RP) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
24 |
+
Refer to the [original model card](https://huggingface.co/Aratako/AntlerStar-RP) for more details on the model.
|
25 |
+
## Use with llama.cpp
|
26 |
+
|
27 |
+
Install llama.cpp through brew.
|
28 |
+
|
29 |
+
```bash
|
30 |
+
brew install ggerganov/ggerganov/llama.cpp
|
31 |
+
```
|
32 |
+
Invoke the llama.cpp server or the CLI.
|
33 |
+
|
34 |
+
CLI:
|
35 |
+
|
36 |
+
```bash
|
37 |
+
llama-cli --hf-repo DavidAU/AntlerStar-RP-Q6_K-GGUF --model antlerstar-rp.Q6_K.gguf -p "The meaning to life and the universe is"
|
38 |
+
```
|
39 |
+
|
40 |
+
Server:
|
41 |
+
|
42 |
+
```bash
|
43 |
+
llama-server --hf-repo DavidAU/AntlerStar-RP-Q6_K-GGUF --model antlerstar-rp.Q6_K.gguf -c 2048
|
44 |
+
```
|
45 |
+
|
46 |
+
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.
|
47 |
+
|
48 |
+
```
|
49 |
+
git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m antlerstar-rp.Q6_K.gguf -n 128
|
50 |
+
```
|