rohan_ahire
09/09/2022, 7:07 PMfrom kedro.framework.session import KedroSession
from kedro.framework.startup import bootstrap_project
from pathlib import Path
metadata = bootstrap_project(Path.cwd())
with KedroSession.create(metadata.package_name) as session:
session.run()
2. Does kedro have pipeline templates? Like for example, a pipeline template for regression use case or classification use case? Or do we just use the kedro pipeline create data_processing
to create a sample template and add processing code in it?datajoely
09/09/2022, 7:12 PMrohan_ahire
09/09/2022, 7:30 PM