Pandas Query
This model allows a Pandas query to be run in the input to select rows. An example is shown below:
This invocation check filters for tensor A having value 1.
The model also returns a tensor called
status
which indicates the operation run and whether it was a success. If no rows satisfy the query then just astatus
tensor output will be returned.Further details on Pandas query can be found here
This model can be useful for conditional Pipelines. For example, you could have two invocations of this model:
and
By including these in a Pipeline as follows we can define conditional routes:
Here the mul10 model will be called if the choice-is-one model succeeds and the add10 model will be called if the choice-is-two model succeeds.
The full notebook can be found here
Last updated
Was this helpful?