Tomás Rojas
03/24/2023, 1:33 PMkedro run
? I have a model training pipeline which I want to skip since I have a model already workingDeepyaman Datta
03/24/2023, 1:34 PMpipeline_registry.py
, you can define whatever set of pipelines you want runnable via kedro run --pipeline pipeline_name
. You can construct a pipeline object that doesn't have the training pipeline in there.Tomás Rojas
03/24/2023, 1:39 PMDeepyaman Datta
03/24/2023, 1:40 PMpipelines['no_training'] = pipelines['__default__'] - pipelines['training']
Nok Lam Chan
03/24/2023, 1:40 PMTomás Rojas
03/24/2023, 1:40 PMNok Lam Chan
03/24/2023, 1:41 PMtag
datajoely
03/24/2023, 1:43 PMNok Lam Chan
03/24/2023, 1:45 PMadd
pipeline since it’s defined in templates (in the older versions), it may be less obvious that you can subtract them.Tomás Rojas
03/24/2023, 1:52 PMtag
option... I'll take a lookdatajoely
03/24/2023, 1:58 PMTomás Rojas
03/24/2023, 1:58 PMDeepyaman Datta
03/24/2023, 2:03 PMTomás Rojas
03/24/2023, 2:04 PMNok Lam Chan
03/24/2023, 9:39 PM