onnxruntime/js/web/test/data/ops/image-scaler.jsonc
Yulong Wang 1743e9a615
[js] enable formatter for more file types (#16888)
### Description
enable formatter for .js/.json/.jsonc/.md files
2023-07-28 15:46:58 -07:00

35 lines
1.2 KiB
Text

[
{
"name": "abs with no attributes",
"operator": "ImageScaler",
"attributes": [
{ "name": "bias", "data": [0.0, 0.0, 0.0], "type": "floats" },
{ "name": "scale", "data": 0.003921568859368563, "type": "float" }
],
"cases": [
{
"name": "T[1,2,3,4]",
"inputs": [
{
"data": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
"dims": [1, 2, 3, 4],
"type": "float32"
}
],
"outputs": [
{
"data": [
0.0, 0.003921568859368563, 0.007843137718737125, 0.011764706578105688, 0.01568627543747425,
0.019607844296842813, 0.023529413156211376, 0.02745098201557994, 0.0313725508749485, 0.035294119734317064,
0.03921568859368563, 0.04313725745305419, 0.0, 0.003921568859368563, 0.007843137718737125,
0.011764706578105688, 0.01568627543747425, 0.019607844296842813, 0.023529413156211376,
0.02745098201557994, 0.0313725508749485, 0.035294119734317064, 0.03921568859368563, 0.04313725745305419
],
"dims": [1, 2, 3, 4],
"type": "float32"
}
]
}
]
}
]