Skip to content
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

Lineage And #25

Open
2 tasks
raghukiran1224 opened this issue Jul 13, 2021 · 0 comments
Open
2 tasks

Lineage And #25

raghukiran1224 opened this issue Jul 13, 2021 · 0 comments
Assignees
Labels
cfp-datamodel Codeflare pipelines datamodel cfp-runtime Codeflare pipelines runtime enhancement New feature or request user-story User story

Comments

@raghukiran1224
Copy link
Contributor

Overview

AND node semantics computes a full cross product. In grid search cv, an AND node like feature union will require features to be joined in a given input object. For example when performing two fold cross validation on the following pipeline: (PCA (n_components = 5, 10) || Nystrom || Select k-best) && Feature Union. On two-fld CV, we get four objects from PCA node (2x2) and two objects each from Nystrom and Select k-best. A regular AND node will compute 4x2x2 cross product. A lineage and will compute 4 cross products: (pca_5, Nystrom, Select k_best) on the two input objects and (pca_10, Nystrom, select k_best) on the the same two input objects.

Lineage And: Solution select items in the AND node cross product that share the same input object lineage

Acceptance Criteria

  • implement Lineage And
  • Test Lineage And on a feature union pipeline

Questions

Assumptions

Reference

@raghukiran1224 raghukiran1224 added enhancement New feature or request cfp-runtime Codeflare pipelines runtime cfp-datamodel Codeflare pipelines datamodel user-story User story labels Jul 13, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cfp-datamodel Codeflare pipelines datamodel cfp-runtime Codeflare pipelines runtime enhancement New feature or request user-story User story
Projects
None yet
Development

No branches or pull requests

3 participants