-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathdeepseek_trtrtx.json
More file actions
41 lines (41 loc) · 1.11 KB
/
deepseek_trtrtx.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"input_model": {
"type": "HfModel",
"model_path": "deepseek-ai/DeepSeek-R1-Distill-Qwen-14B",
"task": "text-classification"
},
"systems": {
"local_system": {
"type": "LocalSystem",
"accelerators": [
{
"device": "gpu",
"execution_providers": [
"NvTensorRTRTXExecutionProvider"
]
}
]
}
},
"target": "local_system",
"passes": {
"builder": {
"type": "ModelBuilder",
"precision": "fp16",
"enable_cuda_graph": true
},
"quantization": {
"type": "NVModelOptQuantization",
"algorithm": "awq",
"tokenizer_dir": "deepseek-ai/DeepSeek-R1-Distill-Qwen-14B",
"calibration_method": "awq_lite",
"calibration_params": {
"add_position_ids": false
}
}
},
"log_severity_level": 0,
"output_dir": "model/deepseek",
"cache_dir": "cache",
"evaluate_input_model": false
}