-
Notifications
You must be signed in to change notification settings - Fork 61
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
Dev lane #249
Merged
Merged
Dev lane #249
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…rced training data)
…consistency throughout
…om set of provided features (pass selector=None)
…want equal number of points per bin
…ze_df" as dataframe to conduct featurization on. Also added generator .pkl saving in BaseGenerator
…ules using SMILES strings as input (e.g., features from RDKit)
…g required input args, adding query/return of y_true data, adding support for passed features + additional featurizers
…eras models not working
…ost-processing easier
…dml package. Better integration with other plots
Some small bug fixes, cleanup, output of data
CrabNet bug fix
Fixes to conform to newest version of madml package
Adding ability to do per-bin recalibration
Many small bug fixes, adding per-bin recalibration, adding support for domains
Updates to Tutorial 1 for latest code versions
Update Tutorial 2 to fix bugs, update version calls
Updates to tutorial 3
Updating tutorial 4
fix to baggingregressor base estimator call
Updates to tutorial 5
Updating tutorial 6
incrementing version number for merging with main branch
Updates to setup.py for python version and package deps
adding loading of X_train for jacknife-after-bootstrap analysis to work again
Updating tutorial 7
add requirements.txt back in to help with merging
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Integrating MADML into MAST-ML as a dependency. We can pass arguments into MADML through the evaluate method in MAST-ML as follows:
domain = [
('madml', {
'n_repeats': 4,
'uq_coeffs': [0.0, 1.0, 0.0],
}),
]
splitter.evaluate(
X=X,
y=y,
models=[model],
preprocessor=preprocessor,
metrics=metrics,
plots=['Scatter', 'Histogram'],
X_extra=X_extra,
verbosity=3,
domain=domain,
)