echos-keeper commited on
Commit
213831e
·
verified ·
1 Parent(s): f3e56b2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +71 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - AmanPriyanshu/GPT-OSS-20B-MoE-expert-activations
5
+ language:
6
+ - en
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - mixture-of-experts
10
+ - moe
11
+ - expert-pruning
12
+ - gpt-oss
13
+ - openai
14
+ - reasoning
15
+ - all
16
+ - specialized
17
+ - efficient
18
+ - transformer
19
+ - causal-lm
20
+ - text-generation
21
+ - pytorch
22
+ - pruned-model
23
+ - domain-specific
24
+ - llama-cpp
25
+ - gguf-my-repo
26
+ base_model: AmanPriyanshu/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts
27
+ ---
28
+
29
+ # echos-keeper/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-Q5_K_M-GGUF
30
+ This model was converted to GGUF format from [`AmanPriyanshu/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts`](https://huggingface.co/AmanPriyanshu/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
31
+ Refer to the [original model card](https://huggingface.co/AmanPriyanshu/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts) for more details on the model.
32
+
33
+ ## Use with llama.cpp
34
+ Install llama.cpp through brew (works on Mac and Linux)
35
+
36
+ ```bash
37
+ brew install llama.cpp
38
+
39
+ ```
40
+ Invoke the llama.cpp server or the CLI.
41
+
42
+ ### CLI:
43
+ ```bash
44
+ llama-cli --hf-repo echos-keeper/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-Q5_K_M-GGUF --hf-file gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-q5_k_m.gguf -p "The meaning to life and the universe is"
45
+ ```
46
+
47
+ ### Server:
48
+ ```bash
49
+ llama-server --hf-repo echos-keeper/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-Q5_K_M-GGUF --hf-file gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-q5_k_m.gguf -c 2048
50
+ ```
51
+
52
+ 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.
53
+
54
+ Step 1: Clone llama.cpp from GitHub.
55
+ ```
56
+ git clone https://github.com/ggerganov/llama.cpp
57
+ ```
58
+
59
+ 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).
60
+ ```
61
+ cd llama.cpp && LLAMA_CURL=1 make
62
+ ```
63
+
64
+ Step 3: Run inference through the main binary.
65
+ ```
66
+ ./llama-cli --hf-repo echos-keeper/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-Q5_K_M-GGUF --hf-file gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-q5_k_m.gguf -p "The meaning to life and the universe is"
67
+ ```
68
+ or
69
+ ```
70
+ ./llama-server --hf-repo echos-keeper/gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-Q5_K_M-GGUF --hf-file gpt-oss-13.7b-specialized-all-pruned-moe-only-20-experts-q5_k_m.gguf -c 2048
71
+ ```