-
Notifications
You must be signed in to change notification settings - Fork 50
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
Analytics Module Tests #157
Conversation
automatminer/automl/adaptors.py
Outdated
@@ -118,9 +118,9 @@ def fit(self, df, target, **fit_kwargs): | |||
self._features = df.drop(columns=target).columns.tolist() |
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.
Again, not sure why this adaptor stuff is being changed....
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.
You're right, the logger attribute should not be changed. I thought the presence of the underscore was the reason I was getting issues in the other parts of that file, but it must have been something else. I'll change it back
Looks good, thank you! Could you resolve the logger comments I posted? I'll merge after that! |
@ardunn This one should also be good to go |
@ADA110 you have conflicting files (see above). Please resolve and I'll go ahead and merge |
@ardunn merge conflict resolved |
Tests for the analytics class, including feature importance and partial dependence plots. Testing includes checking the presence of a list of features and verifying that certain partial dependence plots are saved in the same folder based on this specific example.