forked from microsoft/Olive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresnet_qat_lightning_module_cpu.json
81 lines (81 loc) · 2.67 KB
/
resnet_qat_lightning_module_cpu.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"input_model":{
"type": "PyTorchModel",
"config": {
"model_path": "models/resnet_trained_for_cifar10.pt",
"io_config": {
"input_names": ["input"],
"input_shapes": [[1, 3, 32, 32]],
"output_names": ["output"],
"dynamic_axes": {
"input": {"0": "batch_size"},
"output": {"0": "batch_size"}
}
}
}
},
"evaluators": {
"common_evaluator": {
"metrics":[
{
"name": "accuracy",
"type": "accuracy",
"sub_types": [{"name": "accuracy_score", "priority": 1}],
"user_config":{
"post_processing_func": "post_process",
"user_script": "user_script.py",
"dataloader_func": "create_dataloader",
"batch_size": 1
}
},
{
"name": "latency",
"type": "latency",
"sub_types": [{"name": "avg", "priority": 2}],
"user_config":{
"user_script": "user_script.py",
"dataloader_func": "create_dataloader",
"batch_size": 1
}
}
]
}
},
"passes": {
"quantization_aware_training":{
"type": "QuantizationAwareTraining",
"config":{
"user_script": "user_script.py",
"num_epochs": 10,
"ptl_data_module": "PTLDataModule",
"ptl_module": "PTLModule",
"pl_extra_args": {"accelerator": "gpu", "enable_checkpointing": true, "devices": 1},
"modules_to_fuse": [["conv1", "bn1"], ["conv2", "bn2"], ["conv3", "bn3"]],
"qconfig_func": "create_qat_config"
}
},
"conversion": {
"type": "OnnxConversion",
"config": {
"target_opset": 17
}
},
"perf_tuning": {
"type": "OrtPerfTuning",
"config": {
"user_script": "user_script.py",
"dataloader_func": "create_dataloader",
"batch_size": 1
}
}
},
"engine": {
"search_strategy": {
"execution_order": "pass-by-pass",
"search_algorithm": "exhaustive"
},
"evaluator": "common_evaluator",
"cache_dir": "cache",
"output_dir": "models/resnet_qat_lightning_module_cpu"
}
}