-
Notifications
You must be signed in to change notification settings - Fork 2k
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
GH-15857: AutoML pipeline support #16041
Conversation
//TODO: given that a transformer can reference a model (e.g. TE), | ||
// and multiple transformers can refer | ||
// to the same model, | ||
// then we should be careful when deleting a transformer (resp. an entire pipeline) | ||
// as we may delete sth that is still in use by another transformer (resp. pipeline). | ||
// --> ref count? | ||
|
||
//TODO: in AutoML, the same transformations are likely to occur on multiple (sometimes all) models, | ||
// especially if the transformers parameters are not tuned. | ||
// But it also depends if the transformers are context(CV)-sensitive (e.g. Target Encoding). | ||
// See `CachingTransformer` for some thoughts about this. |
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.
these are just things to keep in mind, but not currently needed
3c39c68
to
c0e024b
Compare
5c4cac6
to
a13da23
Compare
c0e024b
to
d609ade
Compare
a13da23
to
03cb8f4
Compare
1d20956
to
3f0417e
Compare
07d388d
to
754a400
Compare
5f12f8a
to
487ca9e
Compare
754a400
to
508269f
Compare
487ca9e
to
4dd815e
Compare
58ace4c
to
cf8c097
Compare
4dd815e
to
5eab88a
Compare
cf8c097
to
bb9047d
Compare
5eab88a
to
e4c0a1a
Compare
bb9047d
to
eaf4322
Compare
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.
Looks good to me, thank you @sebhrusen !
h2o-automl/src/main/java/water/automl/api/schemas3/AutoMLBuildSpecV99.java
Show resolved
Hide resolved
The base branch was changed.
eaf4322
to
cfbf707
Compare
@wendycwong, @tomasfryda this one is ready for merge. |
* Revert "GH-15857: cleanup legacy TE integration in ModelBuilder and AutoML (#16061)" This reverts commit a8f309b. * Revert "GH-15857: AutoML pipeline support (#16041)" This reverts commit 17fa9ee. * Revert "GH-15856: Grid pipeline support (#16040)" This reverts commit b7ac670. * Revert "GH-15855: core pipeline API (#16039)" This reverts commit c15ea1e.
integrate TE in AutoML as a pipeline transformer: #15857