mexicanamerican commited on
Commit
35d7802
·
verified ·
1 Parent(s): 8da3e13

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
+ base_model: ValiantLabs/Qwen3-8B-Esper3
3
+ datasets:
4
+ - sequelbox/Titanium2.1-DeepSeek-R1
5
+ - sequelbox/Tachibana2-DeepSeek-R1
6
+ - sequelbox/Raiden-DeepSeek-R1
7
+ language:
8
+ - en
9
+ library_name: transformers
10
+ license: apache-2.0
11
+ pipeline_tag: text-generation
12
+ tags:
13
+ - esper
14
+ - esper-3
15
+ - valiant
16
+ - valiant-labs
17
+ - qwen
18
+ - qwen-3
19
+ - qwen-3-8b
20
+ - 8b
21
+ - reasoning
22
+ - code
23
+ - code-instruct
24
+ - python
25
+ - javascript
26
+ - dev-ops
27
+ - jenkins
28
+ - terraform
29
+ - scripting
30
+ - powershell
31
+ - azure
32
+ - aws
33
+ - gcp
34
+ - cloud
35
+ - problem-solving
36
+ - architect
37
+ - engineer
38
+ - developer
39
+ - creative
40
+ - analytical
41
+ - expert
42
+ - rationality
43
+ - conversational
44
+ - chat
45
+ - instruct
46
+ - llama-cpp
47
+ - gguf-my-repo
48
+ ---
49
+
50
+ # mexicanamerican/Qwen3-8B-Esper3-Q8_0-GGUF
51
+ This model was converted to GGUF format from [`ValiantLabs/Qwen3-8B-Esper3`](https://huggingface.co/ValiantLabs/Qwen3-8B-Esper3) 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/ValiantLabs/Qwen3-8B-Esper3) 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 mexicanamerican/Qwen3-8B-Esper3-Q8_0-GGUF --hf-file qwen3-8b-esper3-q8_0.gguf -p "The meaning to life and the universe is"
66
+ ```
67
+
68
+ ### Server:
69
+ ```bash
70
+ llama-server --hf-repo mexicanamerican/Qwen3-8B-Esper3-Q8_0-GGUF --hf-file qwen3-8b-esper3-q8_0.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 mexicanamerican/Qwen3-8B-Esper3-Q8_0-GGUF --hf-file qwen3-8b-esper3-q8_0.gguf -p "The meaning to life and the universe is"
88
+ ```
89
+ or
90
+ ```
91
+ ./llama-server --hf-repo mexicanamerican/Qwen3-8B-Esper3-Q8_0-GGUF --hf-file qwen3-8b-esper3-q8_0.gguf -c 2048
92
+ ```