NikolayKozloff commited on
Commit
fc4490a
1 Parent(s): e962f27

Upload README.md with huggingface_hub

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