detr_custom / preprocessor_config.json
zeroone012012's picture
Merge branch 'main' of https://huggingface.co/zeroone012012/detr_custom into main
b1c2b52
raw
history blame contribute delete
437 Bytes
{
"type": "detr_image",
"max_size": 800,
"min_size": 400,
"num_channels": 3,
"mean": [0.485, 0.456, 0.406],
"std": [0.229, 0.224, 0.225],
"scale_h": 384,
"scale_w": 600,
"augmentation": {
"type": "augmentation",
"flip_prob": 0.5,
"translate": [0.1, 0.1],
"scale": [0.9, 1.1],
"rotate": [-30, 30],
"hue": 0.1,
"saturation": 0.1,
"value": 0.1
}
}