-
Notifications
You must be signed in to change notification settings - Fork 27
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
standardize AbstractFloats #555
standardize AbstractFloats #555
Conversation
Thanks for this. It seems that codecov is hanging. I've been having this issue elsewhere. Can you try updating the codecov GH action to version MLJModels.jl/.github/workflows/ci.yml Line 45 in 0de3aec
Don't use |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #555 +/- ##
==========================================
+ Coverage 76.92% 77.08% +0.16%
==========================================
Files 16 16
Lines 1170 1126 -44
==========================================
- Hits 900 868 -32
+ Misses 270 258 -12 ☔ View full report in Codecov by Sentry. |
Could you please also fix this line: MLJModels.jl/src/builtins/Transformers.jl Line 506 in 1757802
More correct is |
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.
Good to have this, thanks. 🙏🏾
|
Changes the float type of the fitresult of
Standardizer
toAbstractFloat
. This means standardizers will no longer force floats toFloat64
.I also removed the second definition of
fitresult_given_feature
- I think this must have been an oversight.