AIronMind commited on
Commit
8573914
1 Parent(s): 7c0bd33

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +84 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - zh
5
+ - id
6
+ - th
7
+ - vi
8
+ - ms
9
+ - lo
10
+ datasets:
11
+ - CohereForAI/aya_dataset
12
+ - CohereForAI/aya_collection
13
+ - Open-Orca/OpenOrca
14
+ - HuggingFaceH4/ultrachat_200k
15
+ - openbmb/UltraFeedback
16
+ tags:
17
+ - multilingual
18
+ - sea
19
+ - sailor
20
+ - sft
21
+ - chat
22
+ - instruction
23
+ - llama-cpp
24
+ - gguf-my-repo
25
+ widget:
26
+ - text: 如何制作烤鱼?
27
+ example_title: Chinese
28
+ - text: How to bake fish?
29
+ example_title: English
30
+ - text: Bagaimana cara memanggang ikan?
31
+ example_title: Malay
32
+ - text: วิธีย่างปลา?
33
+ example_title: Thai
34
+ - text: Bagaimana membuat bakaran ikan?
35
+ example_title: Indonesian
36
+ - text: Làm thế nào để nướng cá?
37
+ example_title: Vietnamese
38
+ license: apache-2.0
39
+ base_model: sail/Sailor-14B-Chat
40
+ ---
41
+
42
+ # AIronMind/Sailor-14B-Chat-Q4_K_M-GGUF
43
+ This model was converted to GGUF format from [`sail/Sailor-14B-Chat`](https://huggingface.co/sail/Sailor-14B-Chat) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
44
+ Refer to the [original model card](https://huggingface.co/sail/Sailor-14B-Chat) for more details on the model.
45
+
46
+ ## Use with llama.cpp
47
+ Install llama.cpp through brew (works on Mac and Linux)
48
+
49
+ ```bash
50
+ brew install llama.cpp
51
+
52
+ ```
53
+ Invoke the llama.cpp server or the CLI.
54
+
55
+ ### CLI:
56
+ ```bash
57
+ llama-cli --hf-repo AIronMind/Sailor-14B-Chat-Q4_K_M-GGUF --hf-file sailor-14b-chat-q4_k_m.gguf -p "The meaning to life and the universe is"
58
+ ```
59
+
60
+ ### Server:
61
+ ```bash
62
+ llama-server --hf-repo AIronMind/Sailor-14B-Chat-Q4_K_M-GGUF --hf-file sailor-14b-chat-q4_k_m.gguf -c 2048
63
+ ```
64
+
65
+ 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.
66
+
67
+ Step 1: Clone llama.cpp from GitHub.
68
+ ```
69
+ git clone https://github.com/ggerganov/llama.cpp
70
+ ```
71
+
72
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
73
+ ```
74
+ cd llama.cpp && LLAMA_CURL=1 make
75
+ ```
76
+
77
+ Step 3: Run inference through the main binary.
78
+ ```
79
+ ./llama-cli --hf-repo AIronMind/Sailor-14B-Chat-Q4_K_M-GGUF --hf-file sailor-14b-chat-q4_k_m.gguf -p "The meaning to life and the universe is"
80
+ ```
81
+ or
82
+ ```
83
+ ./llama-server --hf-repo AIronMind/Sailor-14B-Chat-Q4_K_M-GGUF --hf-file sailor-14b-chat-q4_k_m.gguf -c 2048
84
+ ```