mirror of
https://github.com/gryf/coach.git
synced 2025-12-18 03:30:19 +01:00
Trace tests update
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
|
||||
import copy
|
||||
from typing import Union
|
||||
from collections import OrderedDict
|
||||
|
||||
import numpy as np
|
||||
from rl_coach.agents.actor_critic_agent import ActorCriticAgent
|
||||
@@ -84,8 +85,8 @@ class DDPGAgentParameters(AgentParameters):
|
||||
super().__init__(algorithm=DDPGAlgorithmParameters(),
|
||||
exploration=OUProcessParameters(),
|
||||
memory=EpisodicExperienceReplayParameters(),
|
||||
networks={"actor": DDPGActorNetworkParameters(),
|
||||
"critic": DDPGCriticNetworkParameters()})
|
||||
networks=OrderedDict([("actor", DDPGActorNetworkParameters()),
|
||||
("critic", DDPGCriticNetworkParameters())]))
|
||||
|
||||
@property
|
||||
def path(self):
|
||||
|
||||
Reference in New Issue
Block a user