We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9a51d3 commit aaf6f18Copy full SHA for aaf6f18
ml-agents/mlagents/trainers/trainer.py
@@ -32,15 +32,15 @@ def __init__(
32
brain: BrainParameters,
33
trainer_parameters: dict,
34
training: bool,
35
- run_id: int,
+ run_id: str,
36
reward_buff_cap: int = 1,
37
):
38
"""
39
Responsible for collecting experiences and training a neural network model.
40
:BrainParameters brain: Brain to be trained.
41
:dict trainer_parameters: The parameters for the trainer (dictionary).
42
:bool training: Whether the trainer is set for training.
43
- :int run_id: The identifier of the current run
+ :str run_id: The identifier of the current run
44
:int reward_buff_cap:
45
46
self.param_keys: List[str] = []
0 commit comments