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
I have observed that in the current evotorch, it seems that it is only possible to sample first and then update, which may be inconvenient for certain use cases.
For example, I am applying the CMA algorithm to a black-box optimization problem. In this problem, obtaining the fitness of a batch of solutions may take some time, so I would like the interface to be able to complete one step in the order of "obtain fitness -> update parameters -> resample". However, the current _step function does not support such idea. I wonder if there could be any improvements in this regard?
The text was updated successfully, but these errors were encountered:
I have observed that in the current evotorch, it seems that it is only possible to sample first and then update, which may be inconvenient for certain use cases.
For example, I am applying the CMA algorithm to a black-box optimization problem. In this problem, obtaining the fitness of a batch of solutions may take some time, so I would like the interface to be able to complete one step in the order of "obtain fitness -> update parameters -> resample". However, the current _step function does not support such idea. I wonder if there could be any improvements in this regard?
The text was updated successfully, but these errors were encountered: