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
def explain(self, windows: np.ndarray, target: None, target_window: None, num_cases: int):
# gather some basic data from passed in variables
components_len = windows.shape[2]
window_len = windows.shape[1]
windows_len = len(windows)
# TODO Revisar si target_window debe ser enviado como argumento a _compute_cbr_analysis
# TODO Revisar si target debe ser enviado como argumento a _compute_distance
correlation_per_window = self._compute_distance(windows, windows_len, components_len, target)
self._compute_cbr_analysis(correlation_per_window, num_cases, target_window, windows_len)
self._compute_statistics(num_cases, target_window, correlation_per_window, target)
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: