YorkieOH10 commited on
Commit
130505c
1 Parent(s): abaefce

Upload README.md with huggingface_hub

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