I am using Tensorflow Federated to train a text classification model with the federated learning approach. Is there any way to apply Early Stopping on the client-side? Is there an option for cross-validation in the API? The only thing I was able to find is the evaluation:
evaluation = tff.learning.build_federated_evaluation(model_fn)
Which is applied to the model by the end of a federated training round.
Am I missing something?