A better way to query branch metadata? #420
Replies: 1 comment
-
I recommend keeping track of the metadata inside the targets you map over, e.g. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I use dynamic within static branching, I find myself rather frequently using regex on target names to recover metadata that I want to use. I use the branching to iterate over estimators/models/data sources and then I produce a bunch of diagnostics for each estimator/model/data source (static branching), and for each of these I have a bunch of hyperparameters that I iterate over with dynamic branching. It is easy to get the hyperparameter information / dynamic branch provenance, I just do something like
To get the static branch meta data I do something like the following within
extract_hubs()
:Is there some approach here that doesn't involve parsing target names like this?
Beta Was this translation helpful? Give feedback.
All reactions