kenonix commited on
Commit
590bd05
·
verified ·
1 Parent(s): 962674d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +89 -0
README.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: open-neo/Kyro-n1.1-3B
3
+ language:
4
+ - en
5
+ - zh
6
+ - fr
7
+ - es
8
+ - pt
9
+ - de
10
+ - it
11
+ - ru
12
+ - ja
13
+ - ko
14
+ - vi
15
+ - th
16
+ - ar
17
+ - fa
18
+ - he
19
+ - tr
20
+ - cs
21
+ - pl
22
+ - hi
23
+ - bn
24
+ - ur
25
+ - id
26
+ - ms
27
+ - lo
28
+ - my
29
+ - ceb
30
+ - km
31
+ - tl
32
+ - nl
33
+ library_name: transformers
34
+ license: other
35
+ license_name: qwen-research
36
+ license_link: https://huggingface.co/Qwen/Qwen2.5-3B-Instruct/blob/main/LICENSE
37
+ tags:
38
+ - reasoning
39
+ - kyro
40
+ - open-neo
41
+ - open-source
42
+ - deepseek-r1
43
+ - llama-cpp
44
+ - gguf-my-repo
45
+ ---
46
+
47
+ # kenonix/Kyro-n1.1-3B-Q4_K_M-GGUF
48
+ This model was converted to GGUF format from [`open-neo/Kyro-n1.1-3B`](https://huggingface.co/open-neo/Kyro-n1.1-3B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
49
+ Refer to the [original model card](https://huggingface.co/open-neo/Kyro-n1.1-3B) for more details on the model.
50
+
51
+ ## Use with llama.cpp
52
+ Install llama.cpp through brew (works on Mac and Linux)
53
+
54
+ ```bash
55
+ brew install llama.cpp
56
+
57
+ ```
58
+ Invoke the llama.cpp server or the CLI.
59
+
60
+ ### CLI:
61
+ ```bash
62
+ llama-cli --hf-repo kenonix/Kyro-n1.1-3B-Q4_K_M-GGUF --hf-file kyro-n1.1-3b-q4_k_m.gguf -p "The meaning to life and the universe is"
63
+ ```
64
+
65
+ ### Server:
66
+ ```bash
67
+ llama-server --hf-repo kenonix/Kyro-n1.1-3B-Q4_K_M-GGUF --hf-file kyro-n1.1-3b-q4_k_m.gguf -c 2048
68
+ ```
69
+
70
+ 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.
71
+
72
+ Step 1: Clone llama.cpp from GitHub.
73
+ ```
74
+ git clone https://github.com/ggerganov/llama.cpp
75
+ ```
76
+
77
+ 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).
78
+ ```
79
+ cd llama.cpp && LLAMA_CURL=1 make
80
+ ```
81
+
82
+ Step 3: Run inference through the main binary.
83
+ ```
84
+ ./llama-cli --hf-repo kenonix/Kyro-n1.1-3B-Q4_K_M-GGUF --hf-file kyro-n1.1-3b-q4_k_m.gguf -p "The meaning to life and the universe is"
85
+ ```
86
+ or
87
+ ```
88
+ ./llama-server --hf-repo kenonix/Kyro-n1.1-3B-Q4_K_M-GGUF --hf-file kyro-n1.1-3b-q4_k_m.gguf -c 2048
89
+ ```