Spestly commited on
Commit
63fd510
·
verified ·
1 Parent(s): bf7047b

Upload README.md with huggingface_hub

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