NikolayKozloff commited on
Commit
c1412da
1 Parent(s): c605a46

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - da
5
+ license: mit
6
+ tags:
7
+ - text-generation-inference
8
+ - transformers
9
+ - unsloth
10
+ - mistral
11
+ - trl
12
+ - llama-cpp
13
+ - gguf-my-repo
14
+ base_model: Mabeck/Heidrun-Mistral-7B-base
15
+ datasets:
16
+ - Mabeck/danish-OpenHermes
17
+ - kobprof/skolegpt-instruct
18
+ pipeline_tag: text-generation
19
+ ---
20
+
21
+ # NikolayKozloff/Heidrun-Mistral-7B-chat-Q8_0-GGUF
22
+ This model was converted to GGUF format from [`Mabeck/Heidrun-Mistral-7B-chat`](https://huggingface.co/Mabeck/Heidrun-Mistral-7B-chat) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
23
+ Refer to the [original model card](https://huggingface.co/Mabeck/Heidrun-Mistral-7B-chat) for more details on the model.
24
+ ## Use with llama.cpp
25
+
26
+ Install llama.cpp through brew.
27
+
28
+ ```bash
29
+ brew install ggerganov/ggerganov/llama.cpp
30
+ ```
31
+ Invoke the llama.cpp server or the CLI.
32
+
33
+ CLI:
34
+
35
+ ```bash
36
+ llama-cli --hf-repo NikolayKozloff/Heidrun-Mistral-7B-chat-Q8_0-GGUF --model heidrun-mistral-7b-chat.Q8_0.gguf -p "The meaning to life and the universe is"
37
+ ```
38
+
39
+ Server:
40
+
41
+ ```bash
42
+ llama-server --hf-repo NikolayKozloff/Heidrun-Mistral-7B-chat-Q8_0-GGUF --model heidrun-mistral-7b-chat.Q8_0.gguf -c 2048
43
+ ```
44
+
45
+ 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.
46
+
47
+ ```
48
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m heidrun-mistral-7b-chat.Q8_0.gguf -n 128
49
+ ```