propeller logo
API ReferenceFederated mlExperiments

Configure FL Experiment

Configure a new federated learning experiment

POST
/fl/experiments

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "http://localhost:7070/fl/experiments" \  -H "Content-Type: application/json" \  -d '{    "experiment_id": "exp-001",    "round_id": "round-1",    "model_ref": "model-v1",    "participants": [      "proplet-1",      "proplet-2"    ],    "hyperparams": {      "learning_rate": 0.01,      "epochs": 5    },    "k_of_n": 2,    "timeout_s": 300  }'
{
  "experiment_id": "string",
  "round_id": "string",
  "status": "string"
}