NikolayKozloff commited on
Commit
5e09376
·
verified ·
1 Parent(s): c516de5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - instruct
4
+ - llama-cpp
5
+ - gguf-my-repo
6
+ base_model: meta-llama/Llama-2-7b-hf
7
+ datasets:
8
+ - garage-bAInd/Open-Platypus
9
+ - Open-Orca/OpenOrca
10
+ - cognitivecomputations/dolphin
11
+ inference: true
12
+ model_type: llama
13
+ pipeline_tag: text-generation
14
+ ---
15
+
16
+ # NikolayKozloff/Llama-2-7b-dolphin-open_platypus-Q8_0-GGUF
17
+ This model was converted to GGUF format from [`neuralmagic/Llama-2-7b-dolphin-open_platypus`](https://huggingface.co/neuralmagic/Llama-2-7b-dolphin-open_platypus) 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/neuralmagic/Llama-2-7b-dolphin-open_platypus) for more details on the model.
19
+ ## Use with llama.cpp
20
+
21
+ Install llama.cpp through brew.
22
+
23
+ ```bash
24
+ brew install ggerganov/ggerganov/llama.cpp
25
+ ```
26
+ Invoke the llama.cpp server or the CLI.
27
+
28
+ CLI:
29
+
30
+ ```bash
31
+ llama-cli --hf-repo NikolayKozloff/Llama-2-7b-dolphin-open_platypus-Q8_0-GGUF --model llama-2-7b-dolphin-open_platypus.Q8_0.gguf -p "The meaning to life and the universe is"
32
+ ```
33
+
34
+ Server:
35
+
36
+ ```bash
37
+ llama-server --hf-repo NikolayKozloff/Llama-2-7b-dolphin-open_platypus-Q8_0-GGUF --model llama-2-7b-dolphin-open_platypus.Q8_0.gguf -c 2048
38
+ ```
39
+
40
+ 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.
41
+
42
+ ```
43
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m llama-2-7b-dolphin-open_platypus.Q8_0.gguf -n 128
44
+ ```