{
"observations": [
[1.0, 1609459200, 23.5],
[2.0, 1609459200, 24.1],
[1.0, 1609545600, 23.7],
[2.0, 1609545600, 24.5]
],
"explanatory_variables": [
0.8,
0.9,
0.85,
0.95
]
}curl --location --request POST 'http://192.168.11.46:13000/v1/engineering_safety_evaluation/multi_point_collaborative_prediction' \
--header 'Content-Type: application/json' \
--data-raw '{
"observations": [
[1.0, 1609459200, 23.5],
[2.0, 1609459200, 24.1],
[1.0, 1609545600, 23.7],
[2.0, 1609545600, 24.5]
],
"explanatory_variables": [
0.8,
0.9,
0.85,
0.95
]
}'{
"code": 200,
"msg": "请求成功",
"data": {
"predictions": [
[
1,
1609459200,
23.58971170031887
],
[
2,
1609459200,
24.181118479460082
],
[
1,
1609545600,
23.746881526409442
],
[
2,
1609545600,
24.51576500060818
]
]
}
}