ssmits commited on
Commit
dd889a5
1 Parent(s): e6a9afe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - es
4
+ - fr
5
+ - de
6
+ - 'no'
7
+ - sv
8
+ - da
9
+ - nl
10
+ - pt
11
+ - pl
12
+ - ro
13
+ - it
14
+ license: apache-2.0
15
+ library_name: transformers
16
+ tags:
17
+ - mergekit
18
+ - merge
19
+ - lazymergekit
20
+ - tiiuae/falcon-11B
21
+ - llama-cpp
22
+ - gguf-my-repo
23
+ base_model:
24
+ - tiiuae/falcon-11B
25
+ ---
26
+
27
+ # ssmits/Falcon2-5.5B-multilingual-Q5_K_M-GGUF
28
+ This model was converted to GGUF format from [`ssmits/Falcon2-5.5B-multilingual`](https://huggingface.co/ssmits/Falcon2-5.5B-multilingual) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
29
+ Refer to the [original model card](https://huggingface.co/ssmits/Falcon2-5.5B-multilingual) for more details on the model.
30
+ ## Use with llama.cpp
31
+
32
+ Install llama.cpp through brew.
33
+
34
+ ```bash
35
+ brew install ggerganov/ggerganov/llama.cpp
36
+ ```
37
+ Invoke the llama.cpp server or the CLI.
38
+
39
+ CLI:
40
+
41
+ ```bash
42
+ llama-cli --hf-repo ssmits/Falcon2-5.5B-multilingual-Q5_K_M-GGUF --model falcon2-5.5b-multilingual.Q5_K_M.gguf -p "The meaning to life and the universe is"
43
+ ```
44
+
45
+ Server:
46
+
47
+ ```bash
48
+ llama-server --hf-repo ssmits/Falcon2-5.5B-multilingual-Q5_K_M-GGUF --model falcon2-5.5b-multilingual.Q5_K_M.gguf -c 2048
49
+ ```
50
+
51
+ 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.
52
+
53
+ ```
54
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m falcon2-5.5b-multilingual.Q5_K_M.gguf -n 128
55
+ ```