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 rollout function returns 3 objects, due to which we getting an error: ValueError: too many values to unpack (expected 2)
It could be solved by replacing line 230 with: eval_rews, eval_length, _ = policy.rollout(env)
Issue 2:
At line:
Issue 1:
At line:
deep-neuroevolution/es_distributed/ga.py
Line 230 in 6ab22e1
The rollout function returns 3 objects, due to which we getting an error:
ValueError: too many values to unpack (expected 2)
It could be solved by replacing line 230 with:
eval_rews, eval_length, _ = policy.rollout(env)
Issue 2:
At line:
deep-neuroevolution/es_distributed/ga.py
Line 143 in 6ab22e1
It should be
lengths_n2 = np.concatenate([r.lengths_n2 for r in curr_task_results])
very much similar todeep-neuroevolution/es_distributed/es.py
Line 276 in 6ab22e1
Otherwise
lengths_n2.mean()
andlengths_n2.sum()
will have multiple dimension.The text was updated successfully, but these errors were encountered: