Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] SAC compatibility with composite distributions. #2447

Merged
merged 8 commits into from
Oct 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix
  • Loading branch information
albertbou92 authored and vmoens committed Oct 10, 2024
commit 53ba3715279dc684cf58276ee7568c9ba42c70c7
2 changes: 1 addition & 1 deletion test/test_cost.py
Original file line number Diff line number Diff line change
Expand Up @@ -3565,7 +3565,7 @@ def forward(self, obs, act):
depth=1,
out_features=2 * n_act,
)
qvalue = QValueClass
qvalue = QValueClass()
batch = [batch]
action = torch.randn(*batch, n_act)
td = TensorDict(
Expand Down
Loading