Skip to content

Commit

Permalink
Fix module name in Gaussian RSSM (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
artemZholus authored Apr 27, 2023
1 parent dab3648 commit c64680b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dreamerv3/nets.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_dist(self, state, argmax=False):
else:
mean = state['mean'].astype(f32)
std = state['std'].astype(f32)
return tfp.MultivariateNormalDiag(mean, std)
return tfd.MultivariateNormalDiag(mean, std)

def obs_step(self, prev_state, prev_action, embed, is_first):
is_first = cast(is_first)
Expand Down

0 comments on commit c64680b

Please sign in to comment.