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
Comparing to the original post, I spotted a few differences (not sure if there are others):
s_max is currently a fixed value (=5). It should be calculated from max_t (with the definition in the original post) and eta (using int(log(max_iter)/log(eta)))
n_0 is calculated differently. The original post rounded (s_max+1)/(s+1) whereas the current implementation doesn't, leading to trial sizes that are different from the original post (always an exponent of 3).