Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix for detecting change points based on MOA #1613

Merged
merged 3 commits into from
Sep 11, 2024

Commits on Sep 11, 2024

  1. Bugfix based on MOA source code in the _detect_change method. The k i…

    …ndex should increment from 0 to bucket.current_idx - 1. The previous code "for k in range(bucket.current_idx - 1):" only increment k to bucket.current_idx - 2 because of the range function.
    denisesato committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    0902e63 View commit details
    Browse the repository at this point in the history
  2. Bugfix based on MOA source code in the _detect_change method. The k i…

    …ndex should increment from 0 to bucket.current_idx - 1. The previous code "for k in range(bucket.current_idx - 1):" only increment k to bucket.current_idx - 2 because of the range function.
    denisesato committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    6c422ba View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3a014cf View commit details
    Browse the repository at this point in the history