Triangle104 commited on
Commit
bbd8eac
·
verified ·
1 Parent(s): 32c696c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: DavidAU/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x
4
+ language:
5
+ - en
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - merge
9
+ - programming
10
+ - code generation
11
+ - code
12
+ - coding
13
+ - coder
14
+ - chat
15
+ - brainstorm
16
+ - qwen
17
+ - qwen3
18
+ - qwencoder
19
+ - brainstorm20x
20
+ - esper
21
+ - esper-3
22
+ - valiant
23
+ - valiant-labs
24
+ - qwen-3
25
+ - qwen-3-8b
26
+ - 8b
27
+ - reasoning
28
+ - code-instruct
29
+ - python
30
+ - javascript
31
+ - dev-ops
32
+ - jenkins
33
+ - terraform
34
+ - scripting
35
+ - powershell
36
+ - azure
37
+ - aws
38
+ - gcp
39
+ - cloud
40
+ - problem-solving
41
+ - architect
42
+ - engineer
43
+ - developer
44
+ - creative
45
+ - analytical
46
+ - expert
47
+ - rationality
48
+ - conversational
49
+ - instruct
50
+ - llama-cpp
51
+ - gguf-my-repo
52
+ datasets:
53
+ - sequelbox/Titanium2.1-DeepSeek-R1
54
+ - sequelbox/Tachibana2-DeepSeek-R1
55
+ - sequelbox/Raiden-DeepSeek-R1
56
+ library_name: transformers
57
+ ---
58
+
59
+ # Triangle104/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x-Q5_K_M-GGUF
60
+ This model was converted to GGUF format from [`DavidAU/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x`](https://huggingface.co/DavidAU/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
61
+ Refer to the [original model card](https://huggingface.co/DavidAU/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x) for more details on the model.
62
+
63
+ ## Use with llama.cpp
64
+ Install llama.cpp through brew (works on Mac and Linux)
65
+
66
+ ```bash
67
+ brew install llama.cpp
68
+
69
+ ```
70
+ Invoke the llama.cpp server or the CLI.
71
+
72
+ ### CLI:
73
+ ```bash
74
+ llama-cli --hf-repo Triangle104/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x-Q5_K_M-GGUF --hf-file qwen3-esper3-reasoning-coder-instruct-12b-brainstorm20x-q5_k_m.gguf -p "The meaning to life and the universe is"
75
+ ```
76
+
77
+ ### Server:
78
+ ```bash
79
+ llama-server --hf-repo Triangle104/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x-Q5_K_M-GGUF --hf-file qwen3-esper3-reasoning-coder-instruct-12b-brainstorm20x-q5_k_m.gguf -c 2048
80
+ ```
81
+
82
+ 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.
83
+
84
+ Step 1: Clone llama.cpp from GitHub.
85
+ ```
86
+ git clone https://github.com/ggerganov/llama.cpp
87
+ ```
88
+
89
+ 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).
90
+ ```
91
+ cd llama.cpp && LLAMA_CURL=1 make
92
+ ```
93
+
94
+ Step 3: Run inference through the main binary.
95
+ ```
96
+ ./llama-cli --hf-repo Triangle104/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x-Q5_K_M-GGUF --hf-file qwen3-esper3-reasoning-coder-instruct-12b-brainstorm20x-q5_k_m.gguf -p "The meaning to life and the universe is"
97
+ ```
98
+ or
99
+ ```
100
+ ./llama-server --hf-repo Triangle104/Qwen3-Esper3-Reasoning-CODER-Instruct-12B-Brainstorm20x-Q5_K_M-GGUF --hf-file qwen3-esper3-reasoning-coder-instruct-12b-brainstorm20x-q5_k_m.gguf -c 2048
101
+ ```