federated learning
AI, ML & GenAI interview questions tagged federated learning, across every topic.
5 questions · 1 unlocked for you
Concepts behind "federated learning"
The curriculum that explains the ideas these questions test.
Core
Differential PrivacyDifferential privacy injects calibrated noise into data, queries, or training so the output is provably insensitive to any single individual's record, capping what can be learned about any one person. In ML, DP-SGD clips and noises gradients to curb memorization and defend against membership-inference attacks. The price is a privacy-utility trade-off governed by a parameter epsilon. AI, ML, and GenAI interviews probe it because it is the rigorous, mathematically-backed privacy tool, and because models can otherwise memorize and leak training data.🛡️ AI Security, Privacy & GovernanceSign in
Core
Federated LearningFederated learning trains a shared model across many devices or organizations without shipping their raw data to a central server: each party computes updates locally and only the updates get aggregated. It weighs communication cost, data heterogeneity, and privacy leakage against the payoff of training on data that legally or practically cannot be pooled. AI, ML, and GenAI interviews probe it to see whether you can separate the genuine fit (mobile keyboards, multi-hospital models) from the cases where centralizing data or using differential privacy alone is simpler.🛡️ AI Security, Privacy & GovernanceSign in
