Synec801 commited on
Commit
c43e71f
1 Parent(s): a7c0a13

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
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - text-generation-inference
7
+ - transformers
8
+ - unsloth
9
+ - llama
10
+ - trl
11
+ - llama-cpp
12
+ - gguf-my-repo
13
+ base_model: NousResearch/Hermes-2-Pro-Llama-3-8B
14
+ ---
15
+
16
+ # Synec801/hermes-2-pro-llama3-entity-mapping-Q8_0-GGUF
17
+ This model was converted to GGUF format from [`gutsartificial/hermes-2-pro-llama3-entity-mapping`](https://huggingface.co/gutsartificial/hermes-2-pro-llama3-entity-mapping) 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/gutsartificial/hermes-2-pro-llama3-entity-mapping) 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 Synec801/hermes-2-pro-llama3-entity-mapping-Q8_0-GGUF --model hermes-2-pro-llama3-entity-mapping-q8_0.gguf -p "The meaning to life and the universe is"
28
+ ```
29
+ Server:
30
+ ```bash
31
+ llama-server --hf-repo Synec801/hermes-2-pro-llama3-entity-mapping-Q8_0-GGUF --model hermes-2-pro-llama3-entity-mapping-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 hermes-2-pro-llama3-entity-mapping-q8_0.gguf -n 128
39
+ ```