.
This commit is contained in:
@@ -88,7 +88,7 @@ class ActorCriticPolicy(BasePolicy):
|
||||
activation_fn: Type[nn.Module] = nn.Tanh,
|
||||
ortho_init: bool = True,
|
||||
use_sde: bool = False,
|
||||
log_std_init: float = 0.0,
|
||||
std_init: float = 1.0,
|
||||
full_std: bool = True,
|
||||
sde_net_arch: Optional[List[int]] = None,
|
||||
use_expln: bool = False,
|
||||
@@ -135,7 +135,7 @@ class ActorCriticPolicy(BasePolicy):
|
||||
self.features_dim = self.features_extractor.features_dim
|
||||
|
||||
self.normalize_images = normalize_images
|
||||
self.log_std_init = log_std_init
|
||||
self.log_std_init = math.log(std_init)
|
||||
# Keyword arguments for gSDE distribution
|
||||
if dist_kwargs == None:
|
||||
dist_kwargs = {}
|
||||
|
||||
Reference in New Issue
Block a user