You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a pipeline where I generate baseline model metrics for a model using the QualityCheckStep. I'd love to use a Condition Step that uses the generated metrics from that step.
In other words, I'd like something like this:
condition_gte = ConditionGreaterThanOrEqualTo(
left=[GET ACCURACY FROM constrains.json file generated from QualityCheckStep],
right=0.75
)
Is there a way to accomplish this without having to create a LambdaStep that loads the constrains.json file and outputs the value? Is there anything similar to a JsonGet function that makes this easier?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have a pipeline where I generate baseline model metrics for a model using the QualityCheckStep. I'd love to use a Condition Step that uses the generated metrics from that step.
In other words, I'd like something like this:
Is there a way to accomplish this without having to create a LambdaStep that loads the constrains.json file and outputs the value? Is there anything similar to a
JsonGet
function that makes this easier?Beta Was this translation helpful? Give feedback.
All reactions