A healthcare company must train a model on sensitive patient data while complying with privacy regulations. They want to add noise to the training process to prevent re-identification. Which technique should they implement?
Differential privacy adds calibrated noise to training to protect individual data points.
Why this answer
Option B is correct because differential privacy injects controlled noise into the training algorithm to protect individual records. k-anonymity (A) focuses on generalization, not noise injection. Homomorphic encryption (C) allows computation on ciphertext but is not typically used during training. Federated learning (D) trains on decentralized data but does not inherently provide differential privacy guarantees.