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
In the section "window-based change point detection" I noticed the following in window.py line 248:
defpredict(self, n_bkps=None, pen=None, epsilon=None):
"""Return the optimal breakpoints. Must be called after the fit method. The breakpoints are associated with the signal passed to fit(). The stopping rule depends on the parameter passed to the function. Args: n_bkps (int): number of breakpoints to find before stopping. penalty (float): penalty value (>0) penalty (float): penalty value Returns: list: sorted list of breakpoints """
Should the arguments not be described as follows?
defpredict(self, n_bkps=None, pen=None, epsilon=None):
"""Return the optimal breakpoints. Must be called after the fit method. The breakpoints are associated with the signal passed to fit(). The stopping rule depends on the parameter passed to the function. Args: n_bkps (int): number of breakpoints to find before stopping. pen (float): penalty value (>0) epsilon (float): reconstruction budget (>0) Returns: list: sorted list of breakpoints """
The text was updated successfully, but these errors were encountered:
In the section "window-based change point detection" I noticed the following in window.py line 248:
Should the arguments not be described as follows?
The text was updated successfully, but these errors were encountered: