fl.request_transfer
上流のモデルストアから最新の集約済みモデルを取得してモデルストアに格納します。
パラメータ
- model_store_ddc:
string-- モデルストア名。
戻り値
格納されたモデルのモデル情報が戻されます。
詳細は model_info を参照してください。
実行例
リクエストデータ
{
"id": 1,
"jsonrpc": "2.0",
"method": "fl.request_transfer",
"params": {
"model_store_ddc": "my_store"
}
}
リクエスト実行
curl -H "Content-type: application/json" \
-H "APIKey: 9c6f4574-89d1-4e3c-8af7-2549dc217fcf" \
-H "Secret: aef8caingiej1ieNieJ3Phool4maeGohcies" \
-X POST -d "@request.json" \
https://localhost/api/v2/fl/jsonrpc
レスポンス
{
"result": {
"start_datetime": {
"_type": "datetime",
"val": "2025-07-12T10:31:35.462732+09:00"
},
"end_datetime": {
"_type": "datetime",
"val": "2025-07-12T10:31:35.462734+09:00"
},
"location": [
0.0,
0.0
],
"tenant_id": "id-party",
"model_id": "fd981197-31a6-4f12-9cf2-30782bffb684",
"model_kind": "my_model",
"model_description": "this is my sample model",
"model_meta": {
"version": "1",
"created": "2025-07-01 01:02:03",
"loss": 0.123
},
"model_state": 40,
"model_hash": "e9a5b77d4b6794a47ad0ba1682185148",
"model_size": 17,
"round": 0,
"hop_count": 0,
"model_store_ddc": "my_store_1752278789.8122"
},
"id": 1,
"jsonrpc": "2.0"
}