Views
No views yet
[!WARNING] This is a quantization of a joke model. The upstream model card explicitly says: "This is a joke. This is not an actual model." Do not use this checkpoint for real reasoning, Japanese QA, coding, evaluation, production, or any task where correctness matters.
compressed-tensors quantization of
AliesTaha/fable-traces, a
dense Qwen3 4B causal language model.compressed-tensorsnvfp4-pack-quantizedNVFP4 W4A4Linearlm_headneuralmagic/calibration, LLM, 512 samples, max sequence 4096llmcompressor, compressed-tensorsmodel.safetensors is about 2.82 GB.1vllm serve sakamakismile/fable-traces-NVFP4 \
2 --max-model-len 131072 \
3 --kv-cache-dtype fp8 \
4 --gpu-memory-utilization 0.921from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="sakamakismile/fable-traces-NVFP4",
5 max_model_len=131072,
6 kv_cache_dtype="fp8",
7 gpu_memory_utilization=0.92,
8)
9
10messages = [[{"role": "user", "content": "Tell me something interesting."}]]
11outputs = llm.chat(messages, SamplingParams(max_tokens=128, temperature=0.0))
12print(outputs[0].outputs[0].text)0.21.0+cu129 on NVIDIA RTX PRO 2000 Blackwell
16 GB GPUs, driver 595.71.05.max_model_len=131072kv_cache_dtype=fp8max_num_seqs=8max_tokens=256repeats=3, warmup=1enforce_eager=True| TP | Parallel | Mean output tok/s | Best output tok/s | Mean total tok/s |
|---|---|---|---|---|
| 1 | 1 | 69.03 | 71.45 | 118.07 |
| 1 | 2 | 129.30 | 131.40 | 219.80 |
| 1 | 4 | 238.04 | 244.81 | 404.32 |
| 1 | 8 | 449.17 | 461.41 | 770.48 |
| TP | Parallel | Mean output tok/s | Best output tok/s | Mean total tok/s |
|---|---|---|---|---|
| 2 | 1 | 60.37 | 60.72 | 103.26 |
| 2 | 2 | 100.86 | 122.85 | 166.75 |
| 2 | 4 | 234.43 | 236.21 | 388.02 |
| 2 | 8 | 360.84 | 415.11 | 613.43 |
benchmarks/.