pipeline_from_config

pipeline_from_config(config, **kwargs)[source]

Run the pipeline with a configuration dictionary.

Parameters
  • config (Mapping[str, Any]) – The experiment configuration dictionary. Should have a ‘metadata’ and ‘pipeline’ key. The metadata entry is passed to the metadata argument of pipeline(). The ‘pipeline’ entry is passed via splat to pipeline().

  • kwargs – Additional kwargs to forward to pipeline().

Return type

PipelineResult

Returns

The results of running the pipeline on the given configuration.