File size: 284 Bytes
0eb9bb7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
name: "linear_regression"
backend: "onnxruntime"
max_batch_size: 0
input [
{
name: "float_input"
data_type: TYPE_FP32
dims: [ -1, 8 ]
}
]
output [
{
name: "variable"
data_type: TYPE_FP32
dims: [ -1, 1 ]
}
]
instance_group [
{
kind: KIND_CPU
}
] |