Views
No views yet
| Recipe | Quant size | BPW | Default type | Tensor-specific overrides |
|---|---|---|---|---|
IQ3_XXS | 111550.48 MiB | 3.17 | Q6_K | ffn_down_exps=iq3_xxs, ffn_gate_exps=iq3_xxs, ffn_up_exps=iq3_xxs |
1#!/bin/sh -e
2
3model=./IQ3_XXS/Hy3-IQ3_XXS-00001-of-00004.gguf
4
5ctx=80000
6parallel=1
7
8ctx_size=$((ctx * parallel))
9
10llama-server --no-mmap --no-warmup \
11 --model "$model" --ctx-size "$ctx_size" -np "$parallel" \
12 -ctk q8_0 -ctv q8_0 \
13 --temp 0.9 --top-p 1.0 \
14 --chat-template-kwargs '{"reasoning_effort":"high"}' \
15 --cache-ram 0 -ctxcp 2 \
16 --host 0.0.0.0