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 function get_action (for the DRL solvers) returns rand(distribution, policy.solver.action_size), but since distribution is already multivariate, this allocates and fills a square matrix with samples (of which only the first is relevant / used) -- I think the intended return value is rand(distribution). I can submit a pull request if that's preferred.
The text was updated successfully, but these errors were encountered:
The function
get_action
(for the DRL solvers) returnsrand(distribution, policy.solver.action_size)
, but sincedistribution
is already multivariate, this allocates and fills a square matrix with samples (of which only the first is relevant / used) -- I think the intended return value isrand(distribution)
. I can submit a pull request if that's preferred.The text was updated successfully, but these errors were encountered: