-
Notifications
You must be signed in to change notification settings - Fork 7
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
Implementation of dask and speedup pip installation #167
Conversation
…asic variance feature filtration to extractors
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #167 +/- ##
==========================================
- Coverage 65.98% 64.99% -1.00%
==========================================
Files 119 121 +2
Lines 11977 12186 +209
==========================================
+ Hits 7903 7920 +17
- Misses 4074 4266 +192
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Thanks for update, @technocreep!
Comment last updated at 2024-11-29 12:35:37 UTC |
…ion dependency; remove sweep.yaml configuration
…ger initialization
…Manager and KernelEnsembler for improved clarity
@@ -83,7 +83,7 @@ def metric(self) -> float: | |||
return mean_squared_error( | |||
y_true=self.target, | |||
y_pred=self.predicted_labels, | |||
squared=False) | |||
squared=False) ** 0.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
в данном случае не то считается, по-моему
squared=False) ** 0.5 | |
squared=True) ** 0.5 |
или
squared=False) ** 0.5 | |
squared=False) |
или можно использовать root_mean_squared_error
, потому что параметр squared
является deprecated в версиях старше scikit-learn==1.4
No description provided.