Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- da
|
| 4 |
+
license: other
|
| 5 |
+
library_name: transformers
|
| 6 |
+
tags:
|
| 7 |
+
- trl
|
| 8 |
+
- sft
|
| 9 |
+
- generated_from_trainer
|
| 10 |
+
- danish
|
| 11 |
+
- llama-cpp
|
| 12 |
+
- gguf-my-repo
|
| 13 |
+
base_model: meta-llama/Meta-Llama-3-8B
|
| 14 |
+
datasets:
|
| 15 |
+
- kobprof/skolegpt-instruct
|
| 16 |
+
pipeline_tag: text-generation
|
| 17 |
+
model-index:
|
| 18 |
+
- name: Llama-3-8B-instruct-dansk
|
| 19 |
+
results: []
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# NikolayKozloff/Llama-3-8B-instruct-dansk-Q8_0-GGUF
|
| 23 |
+
This model was converted to GGUF format from [`emillykkejensen/Llama-3-8B-instruct-dansk`](https://huggingface.co/emillykkejensen/Llama-3-8B-instruct-dansk) 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/emillykkejensen/Llama-3-8B-instruct-dansk) 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 NikolayKozloff/Llama-3-8B-instruct-dansk-Q8_0-GGUF --model llama-3-8b-instruct-dansk.Q8_0.gguf -p "The meaning to life and the universe is"
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
Server:
|
| 41 |
+
|
| 42 |
+
```bash
|
| 43 |
+
llama-server --hf-repo NikolayKozloff/Llama-3-8B-instruct-dansk-Q8_0-GGUF --model llama-3-8b-instruct-dansk.Q8_0.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 llama-3-8b-instruct-dansk.Q8_0.gguf -n 128
|
| 50 |
+
```
|