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
Tell has high CPU usage but no GPU usage, if my eval is GPU bound I have my GPUs idle during tell.
Is there a possibility to run another ask and eval during the current tell?
The text was updated successfully, but these errors were encountered:
Running ask and eval in itself is a matter of implementation (though ask uses the state of the object that tell changes, so I guess you want to call ask before and not during the change). The question then is whether the result of eval is still useful after tell has been executed. There are quite a few caveats one would need to figure out. Using a significant number of samples in tell from a different (not updated) distribution is in particular problematic for step-size control and for controlling unbiasedness in the update. There are implementation details that could be crucial and it is not at all clear to me under which circumstances this would work or fail.
Tell
has high CPU usage but no GPU usage, if myeval
is GPU bound I have my GPUs idle duringtell
.Is there a possibility to run another
ask
andeval
during the currenttell
?The text was updated successfully, but these errors were encountered: