Views
No views yet
| File | Size | Quant | BPW |
|---|---|---|---|
Tess-4-27B-ROCmFP4_FAST.gguf | 14 GB | ROCmFP4_FAST (charlie12345) | ~3.8 bpw |
llama-cpp package will exit with unknown quantization at load time. Use the llama-server/llama-cli from the ROCmFPX fork.1# Build charlie12345/ROCmFPX (ROCm fork)
2git clone https://github.com/charlie12345/ROCmFPX
3cd ROCmFPX
4mkdir build && cd build
5cmake .. -DGGML_HIP=ON -DAMDGPU_TARGETS=gfx1200
6make -j$(nproc)
7
8# Serve
9llama-server \
10 -m Tess-4-27B-ROCmFP4_FAST.gguf \
11 --host 0.0.0.0 --port 8081 \
12 -ngl 99 -c 65536 -t 12 \
13 -ctk q4_0 -ctv q4_0 \
14 -fa on --cache-ram 0 --no-cache-prompt \
15 -np 1 --batch-size 512 --ubatch-size 128 \
16 --jinja --metrics -rea off1# Requires the ROCmFPX fork and the F16 source GGUF
2llama-quantize --allow-requantize tess-4-27b-f16.gguf \
3 Tess-4-27B-ROCmFP4_FAST.gguf Q4_0_ROCMFP4_FAST| File | Description |
|---|---|
Tess-4-27B-ROCmFP4_FAST.gguf | The quantized model (LFS-tracked) |
README.md | This model card |