alexcovo commited on
Commit
75860c0
1 Parent(s): d218d8d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: llama3
5
+ library_name: transformers
6
+ tags:
7
+ - mergekit
8
+ - peft
9
+ - nvidia
10
+ - chatqa-1.5
11
+ - chatqa
12
+ - llama-3
13
+ - pytorch
14
+ - llama-cpp
15
+ - gguf-my-repo
16
+ base_model:
17
+ - meta-llama/Meta-Llama-3-8B
18
+ - nvidia/Llama3-ChatQA-1.5-8B
19
+ - winglian/llama-3-8b-256k-PoSE
20
+ pipeline_tag: text-generation
21
+ ---
22
+
23
+ # alexcovo/Llama3-ChatQA-1.5-8B-256K-Q4_K_M-GGUF
24
+ This model was converted to GGUF format from [`beratcmn/Llama3-ChatQA-1.5-8B-256K`](https://huggingface.co/beratcmn/Llama3-ChatQA-1.5-8B-256K) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
25
+ Refer to the [original model card](https://huggingface.co/beratcmn/Llama3-ChatQA-1.5-8B-256K) for more details on the model.
26
+ ## Use with llama.cpp
27
+
28
+ Install llama.cpp through brew.
29
+
30
+ ```bash
31
+ brew install ggerganov/ggerganov/llama.cpp
32
+ ```
33
+ Invoke the llama.cpp server or the CLI.
34
+
35
+ CLI:
36
+
37
+ ```bash
38
+ llama-cli --hf-repo alexcovo/Llama3-ChatQA-1.5-8B-256K-Q4_K_M-GGUF --model llama3-chatqa-1.5-8b-256k.Q4_K_M.gguf -p "The meaning to life and the universe is"
39
+ ```
40
+
41
+ Server:
42
+
43
+ ```bash
44
+ llama-server --hf-repo alexcovo/Llama3-ChatQA-1.5-8B-256K-Q4_K_M-GGUF --model llama3-chatqa-1.5-8b-256k.Q4_K_M.gguf -c 2048
45
+ ```
46
+
47
+ 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.
48
+
49
+ ```
50
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m llama3-chatqa-1.5-8b-256k.Q4_K_M.gguf -n 128
51
+ ```