Cran-May commited on
Commit
71decc4
1 Parent(s): eaaa3f3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - zh
4
+ - en
5
+ license: apache-2.0
6
+ tags:
7
+ - llama-cpp
8
+ - gguf-my-repo
9
+ datasets:
10
+ - Azure99/blossom-chat-v1
11
+ - Azure99/blossom-math-v2
12
+ - Azure99/blossom-wizard-v1
13
+ - Azure99/blossom-orca-v1
14
+ pipeline_tag: text-generation
15
+ ---
16
+
17
+ # Cran-May/blossom-v3_1-baichuan2-13b-Q4_K_M-GGUF
18
+ This model was converted to GGUF format from [`Azure99/blossom-v3_1-baichuan2-13b`](https://huggingface.co/Azure99/blossom-v3_1-baichuan2-13b) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
19
+ Refer to the [original model card](https://huggingface.co/Azure99/blossom-v3_1-baichuan2-13b) for more details on the model.
20
+ ## Use with llama.cpp
21
+ Install llama.cpp through brew.
22
+ ```bash
23
+ brew install ggerganov/ggerganov/llama.cpp
24
+ ```
25
+ Invoke the llama.cpp server or the CLI.
26
+ CLI:
27
+ ```bash
28
+ llama-cli --hf-repo Cran-May/blossom-v3_1-baichuan2-13b-Q4_K_M-GGUF --model blossom-v3_1-baichuan2-13b-q4_k_m.gguf -p "The meaning to life and the universe is"
29
+ ```
30
+ Server:
31
+ ```bash
32
+ llama-server --hf-repo Cran-May/blossom-v3_1-baichuan2-13b-Q4_K_M-GGUF --model blossom-v3_1-baichuan2-13b-q4_k_m.gguf -c 2048
33
+ ```
34
+ 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.
35
+ ```
36
+ git clone https://github.com/ggerganov/llama.cpp && \
37
+ cd llama.cpp && \
38
+ make && \
39
+ ./main -m blossom-v3_1-baichuan2-13b-q4_k_m.gguf -n 128
40
+ ```