from enum import Enum
[docs]
class ClientState(Enum):
"""Enum for representing the state of a client."""
idle = 1
training = 2
validating = 3
predicting = 4
[docs]
def ClientStateToString(state):
"""Convert a ClientState to a string representation.
:param state: the state to convert
:type state: :class:`fedn.network.clients.state.ClientState`
:return: string representation of the state
:rtype: str
"""
if state == ClientState.idle:
return "IDLE"
if state == ClientState.training:
return "TRAINING"
if state == ClientState.validating:
return "VALIDATING"
if state == ClientState.predicting:
return "PREDICTING"
return "UNKNOWN"