{
    "inputs": {
        "input": [
            1,
            3,
            240,
            320
        ]
    },
    "calibration_num": 100,
    "calibration_method": "ema",
    "default_loader": {
        "dataset_path": "/mnt/datasets/widerface/WIDER_val/images",
        "file_extensions": [
            "jpg",
            "jpeg",
            "png"
        ],
        "preprocessings": [
            {
                "resize": {
                    "width": 320,
                    "height": 240
                }
            },
            {
                "normalize": {
                    "mean": [
                        127.0,
                        127.0,
                        127.0
                    ],
                    "std": [
                        128.0,
                        128.0,
                        128.0
                    ]
                }
            },
            {
                "transpose": {
                    "axis": [
                        2,
                        0,
                        1
                    ]
                }
            },
            {
                "expandDim": {
                    "axis": 0
                }
            }
        ]
    }
}