Source code for fl4health.utils.logging

from enum import Enum


[docs] class LoggingMode(str, Enum): TRAIN = "Training" EARLY_STOP_VALIDATION = "Early_Stop_Validation" VALIDATION = "Validation" TEST = "Testing"