DavidAU commited on
Commit
e6f012e
1 Parent(s): 846114c

Upload README.md with huggingface_hub

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