Triangle104 commited on
Commit
874d19f
·
verified ·
1 Parent(s): 3d5843a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Spestly/Athena-3-14B
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
+ license: mit
34
+ tags:
35
+ - chemistry
36
+ - biology
37
+ - code
38
+ - text-generation-inference
39
+ - STEM
40
+ - unsloth
41
+ - transformers
42
+ - qwen2
43
+ - trl
44
+ - llama-cpp
45
+ - gguf-my-repo
46
+ ---
47
+
48
+ # Triangle104/Athena-3-14B-Q4_K_M-GGUF
49
+ This model was converted to GGUF format from [`Spestly/Athena-3-14B`](https://huggingface.co/Spestly/Athena-3-14B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
50
+ Refer to the [original model card](https://huggingface.co/Spestly/Athena-3-14B) for more details on the model.
51
+
52
+ ## Use with llama.cpp
53
+ Install llama.cpp through brew (works on Mac and Linux)
54
+
55
+ ```bash
56
+ brew install llama.cpp
57
+
58
+ ```
59
+ Invoke the llama.cpp server or the CLI.
60
+
61
+ ### CLI:
62
+ ```bash
63
+ llama-cli --hf-repo Triangle104/Athena-3-14B-Q4_K_M-GGUF --hf-file athena-3-14b-q4_k_m.gguf -p "The meaning to life and the universe is"
64
+ ```
65
+
66
+ ### Server:
67
+ ```bash
68
+ llama-server --hf-repo Triangle104/Athena-3-14B-Q4_K_M-GGUF --hf-file athena-3-14b-q4_k_m.gguf -c 2048
69
+ ```
70
+
71
+ 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.
72
+
73
+ Step 1: Clone llama.cpp from GitHub.
74
+ ```
75
+ git clone https://github.com/ggerganov/llama.cpp
76
+ ```
77
+
78
+ 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).
79
+ ```
80
+ cd llama.cpp && LLAMA_CURL=1 make
81
+ ```
82
+
83
+ Step 3: Run inference through the main binary.
84
+ ```
85
+ ./llama-cli --hf-repo Triangle104/Athena-3-14B-Q4_K_M-GGUF --hf-file athena-3-14b-q4_k_m.gguf -p "The meaning to life and the universe is"
86
+ ```
87
+ or
88
+ ```
89
+ ./llama-server --hf-repo Triangle104/Athena-3-14B-Q4_K_M-GGUF --hf-file athena-3-14b-q4_k_m.gguf -c 2048
90
+ ```