useless prints removed.

This commit is contained in:
Rooholla-KhorramBakht 2025-01-13 01:18:31 +00:00
parent 9b8d845d04
commit 807932b4ec
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ class Policy:
if self.step_counter%50==0:
self.perturbation = torch.rand_like(latent)*0.9
self.step_counter +=1
print(latent, self.perturbation)
# print(latent, self.perturbation)
info["latent"] = latent
action = self.body.forward(
torch.cat((obs["obs_history"].to("cpu"), latent), dim=-1)