File size: 787 Bytes
6413c76 |
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 |
{
"processor": {
"name": "image_processing",
"transforms": [
{
"operation": {
"name": "decode_image",
"domain": "com.microsoft.extensions",
"type": "DecodeImage",
"attrs": {
"color_space": "BGR"
}
}
},
{
"operation": {
"name": "convert_to_rgb",
"domain": "com.microsoft.extensions",
"type": "ConvertRGB"
}
},
{
"operation": {
"name": "phi3_image_transform",
"domain": "com.microsoft.extensions",
"type": "Phi3ImageTransform",
"attrs": {
"num_crops": 16,
"num_img_tokens": 144
}
}
}
]
}
} |