Views
No views yet
| Specification | Details |
|---|---|
| Source Model | yapwithai/canopy-orpheus-3b-0.1-ft |
| Quantization Method | AWQ (Activation-aware Weight Quantization) |
| Precision | INT4 weights, INT8 KV cache |
| AWQ Group/Block Size | 128 |
| TensorRT-LLM Version | 1.2.0rc5 |
| Max Batch Size | 16 |
| SM Arch | sm80 |
| GPU Name | NVIDIA A100 |
| GPU VRAM | 80 GB |
| CUDA Toolkit | 13.0 |
| NVIDIA Driver | 550.127.05 |
| Generated | 2025-12-22 |
trt-llm/
checkpoints/ # Quantized TRT-LLM checkpoints (portable)
*.safetensors
config.json
engines/sm80_trt-llm-1.2.0rc5_cuda13.0/ # Built TensorRT-LLM engines (hardware-specific)
rank*.engine
build_metadata.json
build_command.sh1{
2 "quantization": {
3 "weights_precision": "int4_awq",
4 "kv_cache_dtype": "int8",
5 "awq_block_size": 128,
6 "calib_size": 32
7 },
8 "build": {
9 "dtype": "float16",
10 "max_input_len": 60,
11 "max_output_len": 1162,
12 "max_batch_size": 16,
13 "engine_label": "sm80_trt-llm-1.2.0rc5_cuda13.0",
14 "tensorrt_llm_version": "1.2.0rc5"
15 },
16 "environment": {
17 "sm_arch": "sm80",
18 "gpu_name": "NVIDIA A100",
19 "cuda_toolkit": "13.0",
20 "nvidia_driver": "550.127.05"
21 }
22}--max_input_len--max_seq_len--max_batch_size--gpt_attention_plugin, --context_fmha, --kv_cache_type paged1.2.0rc51pip install huggingface_hub
2# Install TensorRT-LLM per NVIDIA docs
3# https://nvidia.github.io/TensorRT-LLM/