Views
No views yet
GptOssForCausalLM architecture with 32 experts and 4 active per token, providing strong performance with efficient inference.| Detail | Value |
|---|---|
| Architecture | GptOssForCausalLM (MoE) |
| Total Parameters | ~20.9B |
| Active Parameters | ~3B per token (4 of 32 experts) |
| Hidden Size | 2880 |
| License | Apache-2.0 |
1# Download your preferred quant
2huggingface-cli download nicolasembleton/context-1-GGUF context-1-Q4_K_M.gguf --local-dir .
3
4# Run
5./llama-cli -m context-1-Q4_K_M.gguf -p "Your prompt here" -ngl 99nicolasembleton/context-1-GGUF in LM Studio's model browser and download the desired quantization.1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="nicolasembleton/context-1-GGUF",
5 filename="context-1-Q4_K_M.gguf",
6 n_gpu_layers=-1,
7)
8
9response = llm.create_chat_completion(
10 messages=[{"role": "user", "content": "Hello!"}]
11)
12print(response)<|start|>system<|message|>...<|end|>
<|start|>developer<|message|>...<|end|>
<|start|>user<|message|>...<|end|>
<|start|>assistant<|channel|>final<|message|>...<|end|>chat_template.jinja in the original repository.