Hi Team, im on Kedro 18.8. I see on a fresh instal...
# questions
d
Hi Team, im on Kedro 18.8. I see on a fresh installation , it gives me this , any solutions ?
meow checkmark 1
d
Your
pipeline
isn't a
Pipeline
object it seems, but rather a function. You got this with a new Kedro project? What does your registry look like?
It seems, in you pipeline dictionary, it's mapping whatever pipeline name you have to a function and not a pipeline object.
d
hmm strange , this is what my registry looks likes but weird thing is i am not using
filter_pipeline
anywhere
d
create_pipeline
is a function
You should probably do
claims_fabrication_pipeline = de_pipeline()
d
ahh dang! You are right , i messed up the naming
👍 1
d
but weird thing is i am not using
filter_pipeline
anywhere
this doesn't matter;
pipeline.filter
is called in the
session.run
code in the traceback you shared
d
yeah , i get it , it was a implementation error!
i was trying to see how far i can get on the setup without having to refer docs 😛