From 078a297995d9a511db1f89a58b9faeca3db2fb02 Mon Sep 17 00:00:00 2001 From: Akhil-Jasson Date: Sun, 19 Jan 2025 19:54:12 +0530 Subject: [PATCH] Fix: Refactor long line in _mr_hydra.py to comply with E501 (line length limit) Edited line 42 that exceeded the 88-character limit (E501). --- aeon/classification/convolution_based/_mr_hydra.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aeon/classification/convolution_based/_mr_hydra.py b/aeon/classification/convolution_based/_mr_hydra.py index 0ff4308063..6ad925a235 100644 --- a/aeon/classification/convolution_based/_mr_hydra.py +++ b/aeon/classification/convolution_based/_mr_hydra.py @@ -39,7 +39,7 @@ class MultiRocketHydraClassifier(BaseClassifier): A dictionary can also be provided to specify weights for each class manually. Note that these weights will be multiplied with sample_weight (passed through the fit method) if sample_weight is specified. - Also Note that "balanced_subsample" is not supported as RidgeClassifierCV is not an ensemble model. + Note:"balanced_subsample" isn't supported as RidgeClassifierCV isn't an ensemble model. n_jobs : int, default=1 The number of jobs to run in parallel for both `fit` and `predict`. ``-1`` means using all processors.