Skip to content

fl_server_ai.notification.training.model_test

Classes:

Name Description
TrainingModelTestNotification

Notification for the start of a model test round.

Classes

TrainingModelTestNotification dataclass

Bases: TrainingRoundStartNotification


              flowchart TD
              fl_server_ai.notification.training.model_test.TrainingModelTestNotification[TrainingModelTestNotification]
              fl_server_ai.notification.training.round_start.TrainingRoundStartNotification[TrainingRoundStartNotification]
              fl_server_ai.notification.training.training.TrainingNotification[TrainingNotification]
              fl_server_ai.notification.notification.Notification[Notification]
              fl_server_ai.notification.serializable.Serializable[Serializable]

                              fl_server_ai.notification.training.round_start.TrainingRoundStartNotification --> fl_server_ai.notification.training.model_test.TrainingModelTestNotification
                                fl_server_ai.notification.training.training.TrainingNotification --> fl_server_ai.notification.training.round_start.TrainingRoundStartNotification
                                fl_server_ai.notification.notification.Notification --> fl_server_ai.notification.training.training.TrainingNotification
                                fl_server_ai.notification.serializable.Serializable --> fl_server_ai.notification.notification.Notification
                





              click fl_server_ai.notification.training.model_test.TrainingModelTestNotification href "" "fl_server_ai.notification.training.model_test.TrainingModelTestNotification"
              click fl_server_ai.notification.training.round_start.TrainingRoundStartNotification href "" "fl_server_ai.notification.training.round_start.TrainingRoundStartNotification"
              click fl_server_ai.notification.training.training.TrainingNotification href "" "fl_server_ai.notification.training.training.TrainingNotification"
              click fl_server_ai.notification.notification.Notification href "" "fl_server_ai.notification.notification.Notification"
              click fl_server_ai.notification.serializable.Serializable href "" "fl_server_ai.notification.serializable.Serializable"
            

Notification for the start of a model test round.

Attributes:

Name Type Description
type NotificationType

The type of the notification.

Source code in fl_server_ai/notification/training/model_test.py
class TrainingModelTestNotification(TrainingRoundStartNotification):
    """
    Notification for the start of a model test round.
    """

    type: NotificationType = NotificationType.MODEL_TEST_ROUND
    """The type of the notification."""

Attributes

type class-attribute instance-attribute

The type of the notification.