Federated learning
AI-Native Systemsconcept · 6 मिनट · अपडेट 19 जुल॰ 2026

Federated learning

लेखक Rajendra Sharma, RN, CPC, CPBसमीक्षक Rajendra Sharma, RN, CPC, CPB · 29 जून 2026

Train one model across many hospitals without any of them sharing patient data — the model travels, the data stays.

In one line

Federated learning inverts the usual pipeline: instead of pooling sensitive data centrally, each site trains locally and shares only model updates, which a coordinator averages into a global model.

site A datalocal train site B datalocal train site C datalocal train global model only model updates leave — data never does
Federated learning trains a shared model across sites by exchanging only weight updates — the patient data never leaves its hospital.

The problem it solves

The best medical AI needs lots of diverse data — but the data sits in separate hospitals that, rightly, can't pool patient records: privacy law, data-sharing agreements, and trust all block it. Federated learning resolves the tension: the model goes to the data instead of the data coming to the model. Each site keeps its records; only what the model learned is shared.

How a training round works

  1. The server sends the current model weights to each participating site.
  2. Each site trains a few steps on its own local data.
  3. Sites return their weight updates (not data) to the server.
  4. The server aggregates them — classically by averaging (FedAvg) — and repeats.

Over many rounds, the global model improves as if it had seen everyone's data — without anyone exposing a record.

The refinements that make it real

The basic loop leaks more than you'd think, so production systems add:

  • Secure aggregation — the server combines updates without being able to inspect any single site's contribution.
  • Differential privacy noise — guards against reconstructing training examples from the updates.
  • Non-IID handling — every hospital's case mix is different (the central practical challenge); naïve averaging can stall or skew, so weighting and personalisation help.

Privacy is an architecture, not a guarantee

The crucial caveat: federated learning reduces data exposure but isn't private by itself — updates can leak information without the protections above. It's a privacy architecture to be combined with DP, encryption, governance and consent — not a checkbox.

Where it shows up in digital health

  • Multi-hospital imaging models where data-sharing agreements are impossible.
  • Rare-disease research that needs cases pooled across borders.
  • On-device models trained across phones/wearables without uploading raw signals.
  • For India-scale, multi-institution research under DPDP, this pattern is one to watch.

Common pitfalls

  • Assuming it's automatically private — add secure aggregation + DP, or updates can leak.
  • Ignoring non-IID skew — different case mixes can degrade or bias the global model.
  • Underestimating the engineering — orchestration, stragglers, and version drift across sites are real operational costs.

Key takeaways

  • Federated learning trains a shared model by exchanging updates, not data.
  • A round = distribute weights → local train → return updates → aggregate (FedAvg) → repeat.
  • It's a privacy architecture — pair with differential privacy, secure aggregation, governance.
  • Ideal where data can't move but a shared model is valuable (imaging, rare disease, devices).

अपना स्मरण जाँचें

2 में से 0 याद

दोबारा पढ़ने से बेहतर है सक्रिय स्मरण — पहले उत्तर सोचें, फिर देखें।

  1. How does federated learning train a model without pooling data?

  2. Is federated learning private on its own?

संदर्भ

  1. McMahan et al. — Communication-Efficient Learning (FedAvg, 2017)

संबंधित entries