-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Basic Analytics Tools #132
Basic Analytics Tools #132
Conversation
…earn into analytics_implementation
…earn into analytics_implementation # Conflicts: # mslearn/analytics/core.py # mslearn/automl/adaptors.py # mslearn/featurization/core.py # mslearn/preprocessing/core.py # mslearn/preprocessing/feature_selection.py # mslearn/utils/utils.py
…earn into analytics_implementation
…earn into analytics_implementation
one quick comment: when making plot methods, don’t save the fig for the time being, return the plot object. then the user can decide what to do with the plot object (see pymatgen plotting) overall i’m very stoked on this tho |
Codecov Report
@@ Coverage Diff @@
## master #132 +/- ##
==========================================
+ Coverage 66.79% 69.61% +2.81%
==========================================
Files 23 23
Lines 1262 1211 -51
==========================================
Hits 843 843
+ Misses 419 368 -51
Continue to review full report at Codecov.
|
btw don’t worry about failing codecov check |
This PR adds a functioning Analytics object that can take a fit MatPipe object and perform operations for interpreting, visualizing, and using the produced model. Currently only supports model agnostic feature importance and single feature partial dependency plotting.