Skip to content

declearn.messaging.StopTraining

Bases: Message

Server-emitted notification that the training process is over.

Source code in declearn/messaging/_base.py
197
198
199
200
201
202
203
204
205
@dataclasses.dataclass
class StopTraining(Message):
    """Server-emitted notification that the training process is over."""

    typekey = "stop_training"

    weights: Vector
    loss: float
    rounds: int