We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Fragmentos de código se encuentran en cbr_fox.py y sktime_interface.py. Al parecer los 3 fragmentos siguen la misma estructura y parámetros:
np.array( ( [np.corrcoef(input_data_dictionary["windows"][currentWindow, :, currentComponent], input_data_dictionary["target"][:, currentComponent])[ 0][1] for currentWindow in range(input_data_dictionary["windows_len"]) for currentComponent in range(input_data_dictionary["components_len"])])).reshape( -1, input_data_dictionary["components_len"])
np.array( ([np.linalg.norm( input_data_dictionary["target"][:, currentComponent] - input_data_dictionary["window"][currentWindow, :, currentComponent]) for currentWindow in range(input_data_dictionary["windows_len"]) for currentComponent in range(input_data_dictionary["components_len"])])).reshape( -1, input_data_dictionary["components_len"])
np.array(([distance(input_data_dictionary["target"][:, current_component], input_data_dictionary["windows"][current_window, :, current_component], metric, **kwargs) for current_window in range(input_data_dictionary["windows_len"]) for current_component in range(input_data_dictionary["components_len"])])).reshape(-1, input_data_dictionary["components_len"])
The text was updated successfully, but these errors were encountered:
Mejora issue #16
2045263
jerryperezperez
Cowardenemy
No branches or pull requests
Fragmentos de código se encuentran en cbr_fox.py y sktime_interface.py. Al parecer los 3 fragmentos siguen la misma estructura y parámetros:
The text was updated successfully, but these errors were encountered: