This pull request contains the code necessary to support the dynamic inputs and outputs where instead of obtaining the raw value from the json or dict we call a function if this is a str.
Also two new methods are added for the MLPipeline called get_fit_args and get_produce_args which do exactly this function, return the inputs and outputs dynamically for MLPipeline which will allow us to make this a primitive in our MLPrimitives library.
This pull request contains the code necessary to support the dynamic inputs and outputs where instead of obtaining the raw value from the
json
ordict
we call a function if this is astr
. Also two new methods are added for theMLPipeline
calledget_fit_args
andget_produce_args
which do exactly this function, return the inputs and outputs dynamically forMLPipeline
which will allow us to make this aprimitive
in our MLPrimitives library.Resolve #134 and helps solving the #116