tff.learning.state_with_new_model_weights

Stay organized with collections Save and categorize content based on your preferences.

Returns a ServerState with updated model weights.

This function cannot currently be used for tff.learning.algorithms, which can have a different ServerState structure. For those methods, use the tff.learning.algorithms.templates.LearningProcess.set_model_weights method on the created process.

server_state A tff.learning.framework.ServerState.
trainable_weights A list of numpy values in the order of the original model's trainable_variables.
non_trainable_weights A list of numpy values in the order of the original model's non_trainable_variables.

A tff.learning.framework.ServerState.