Skip to content

fl.feedback

Note

This document has been machine translated.

Feedback models in the model store to the upstream model store.

Parameters

  • model_store_ddc: string -- Model store name.
  • model_id: string -- model ID.

Return Values

Model information of the model registered in the upstream model store is returned. See model_info for details.

Execution example

Request Data

{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "fl.feedback",
  "params": {
    "model_store_ddc": "my_store",
    "model_id": "4da3acd8-4641-4687-a7e6-db4d7ae4ad5c"
  }
}

Request Execution

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

Response

{
  "result": {
    "end_datetime": {
      "_type": "datetime",
      "val": "2025-07-12T10:14:36.695449+09:00"
    },
    "hop_count": 0,
    "location": [
      0.0,
      0.0
    ],
    "model_description": "this is my sample model",
    "model_hash": "e9a5b77d4b6794a47ad0ba1682185148",
    "model_id": "0abe89e6-62bd-4ea8-a816-7c9bd3c9bd8c",
    "model_kind": "my_model",
    "model_meta": {
      "created": "2025-07-01 01:02:03",
      "loss": 0.123,
      "version": "1"
    },
    "model_size": 17,
    "model_state": 20,
    "model_store_ddc": "upstream_store_1752123975.793956",
    "round": 0,
    "start_datetime": {
      "_type": "datetime",
      "val": "2025-07-12T10:14:36.695447+09:00"
    },
    "tenant_id": "id-party"
  },
  "id": 1,
  "jsonrpc": "2.0"
}