You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The simulation code for recent budget is incorrect here. Consider a recent budget 0. Applying the mask with recent budget leaves the main diagonal as it is which should not be the case.
The simulation code for recent budget is incorrect here. Consider a recent budget 0. Applying the mask with recent budget leaves the main diagonal as it is which should not be the case.
Here is minimal code for replication.
The output is this code is this:
tensor(
[[ True, False, False, False],
[ True, True, False, False],
[ True, True, True, False],
[ True, True, True, True]])
tensor(
[[ True, False, False, False],
[False, True, False, False],
[False, False, True, False],
[False, False, False, True]])
tensor(
[[0.4726, 0.0000, 0.0000, 0.0000],
[0.0000, 0.6668, 0.0000, 0.0000],
[0.0000, 0.0000, 0.4941, 0.0000],
[0.0000, 0.0000, 0.0000, 0.5652]])
With recent_budget=0, we should expect all zeros here.
The text was updated successfully, but these errors were encountered: