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 code is in line 244 of river.drift.adwin_c.pyx.
I found that the code at line 244 of the file adwin_c.pyx, which reads "for k in range(bucket.current_idx - 1)", differs from the realization in MOA. I believe it should be "for k in range(bucket.current_idx)". Of course, this is a minor difference, but it might also affect the conditional statement at line 272, causing that condition to always be false.
I would appreciate it if someone could clarify this for me. Thank you!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The code is in line 244 of river.drift.adwin_c.pyx.
I found that the code at line 244 of the file adwin_c.pyx, which reads "for k in range(bucket.current_idx - 1)", differs from the realization in MOA. I believe it should be "for k in range(bucket.current_idx)". Of course, this is a minor difference, but it might also affect the conditional statement at line 272, causing that condition to always be false.
I would appreciate it if someone could clarify this for me. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions