File size: 586 Bytes
51c9544 |
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 |
{
"preprocessor_name": "your_preprocessor_name",
"preprocessing_steps": [
{
"step_name": "step_1",
"step_type": "resize",
"parameters": {
"width": 640,
"height": 480
}
},
{
"step_name": "step_2",
"step_type": "normalize",
"parameters": {
"mean": [0.485, 0.456, 0.406],
"std": [0.229, 0.224, 0.225]
}
},
{
"step_name": "step_3",
"step_type": "augmentation",
"parameters": {
"augmentation_type": "random_flip",
"probability": 0.5
}
}
]
}
|