Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlypalace committed Dec 16, 2023
1 parent af64f1b commit 507c8b1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions morl_baselines/multi_policy/envelope/envelope.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,6 @@ def __init__(
self.final_homotopy_lambda = final_homotopy_lambda
self.homotopy_decay_steps = homotopy_decay_steps

print("Envelope device: ", self.device)

self.q_net = QNet(self.observation_shape, self.action_dim, self.reward_dim, net_arch=net_arch).to(self.device)
self.target_q_net = QNet(self.observation_shape, self.action_dim, self.reward_dim, net_arch=net_arch).to(self.device)
self.target_q_net.load_state_dict(self.q_net.state_dict())
Expand Down

0 comments on commit 507c8b1

Please sign in to comment.