#1386: Apply suggestions from code review - make seed an optional variable

This commit is contained in:
Czar Echavez
2023-06-23 07:57:31 +00:00
parent 1a5bd3af48
commit fb50b8becf

View File

@@ -140,7 +140,7 @@ class TrainingConfig:
deterministic: bool = False
"If true, the training will be deterministic"
seed: int = None
seed: Optional[int] = None
"The random number generator seed to be used while training the agent"
def to_dict(self, json_serializable: bool = True):