Closed ianmcook closed 3 months ago
The recipe constructor is variadic (it takes one or more steps as args, not a list of steps). You want:
recipe = ml.Recipe(
ml.ScaleStandard("distance")
)
Aha, thanks! I got tripped up on this because in a very early version of IbisML, it took a list of steps.
When I run this code:
I get this error: