Views
No views yet
| Property | Value |
|---|---|
| Original Model | TheDrummer/Behemoth-R1-123B-v2 |
| Quantization | NVFP4 (FP4 weights, FP16 activations) |
| Method | NVIDIA ModelOpt PTQ |
| Calibration Samples | 512 |
| Max Sequence Length | 4096 |
1from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="TheHouseOfTheDude/Behemoth-R1-V2_ModelOpt-NVFP4",
5 quantization="modelopt",
6 trust_remote_code=True,
7)
8
9sampling_params = SamplingParams(temperature=0.8, top_p=0.95, max_tokens=512)
10outputs = llm.generate(["Write a story about..."], sampling_params)
11print(outputs[0].outputs[0].text)