Views
No views yet
TL;DR
- This repo is quantized with multiple branches: W4A16-ASYM (AWQ W4A16 asymmetric) and W8A16 (INT8 weights / INT16 activations).
- Load with vLLM using
--quantization compressed-tensors.- Typical W4A16 recipe: group_size=128, keep
lm_headin higher precision; uses the parent finetune’s chat template.
Themainbranch is a placeholder landing branch (model card + links). All runnable artifacts live under per-revision branches.
mainW4A16W4A16-ASYMW8A16.safetensors with an index (model.safetensors.index.json)config.json including compressed-tensors metadata (e.g., weight_format, quantization, quantization_config)tokenizer.json, tokenizer.model, etc.)chat_template.jinja (inherits the parent finetune’s chat format)Exact files can differ by branch; see the Files and versions tab for each revision.
pip install vllmCUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 vllm serve TheHouseOfTheDude/Behemoth-ReduX-123B-v1_Compressed-Tensors --quantization compressed-tensors --tensor-parallel-size 8 --max-model-len 32768 --gpu-memory-utilization 0.70 --dtype bfloat161curl http://localhost:8000/v1/chat/completions -H "Content-Type: application/json" -d '{
2 "model": "TheHouseOfTheDude/Behemoth-ReduX-123B-v1_Compressed-Tensors",
3 "messages": [
4 {"role":"system","content":"You are Behemoth-ReduX, helpful, precise, and safe."},
5 {"role":"user","content":"Outline a retrieval pipeline for scientific PDFs."}
6 ],
7 "max_tokens": 512,
8 "temperature": 0.7,
9 "top_p": 0.95
10 }'Note:compressed-tensorsis a vLLM runtime format. Loading this artifact directly in vanilla 🤗 Transformers is not supported; use vLLM for inference. If you need Transformers inference, use a different export (e.g., GPTQ/AWQ compatible with Transformers) or full-precision weights.
chat_template.jinja is present in the branch, apply_chat_template will use it automatically.--max-model-len and batch size.