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

Revisar si target_window debe ser enviado como argumento a _compute_cbr_analysis #10

Open
jerryperezperez opened this issue Oct 9, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@jerryperezperez
Copy link
Collaborator

    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)
@jerryperezperez jerryperezperez added the bug Something isn't working label Oct 9, 2024
Cowardenemy added a commit that referenced this issue Oct 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants