https://kedro.org/ logo
#questions
Title
# questions
d

Debanjan Banerjee

05/23/2023, 2:43 PM
Hi Team, im on Kedro 18.8. I see on a fresh installation , it gives me this , any solutions ?
meow checkmark 1
d

Deepyaman Datta

05/23/2023, 2:46 PM
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

Debanjan Banerjee

05/23/2023, 2:56 PM
hmm strange , this is what my registry looks likes but weird thing is i am not using
filter_pipeline
anywhere
d

Deepyaman Datta

05/23/2023, 2:57 PM
create_pipeline
is a function
You should probably do
claims_fabrication_pipeline = de_pipeline()
d

Debanjan Banerjee

05/23/2023, 2:59 PM
ahh dang! You are right , i messed up the naming
👍 1
d

Deepyaman Datta

05/23/2023, 2:59 PM
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

Debanjan Banerjee

05/23/2023, 2:59 PM
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 😛
3 Views