replicate_pipeline_from_config¶
- replicate_pipeline_from_config(config, directory, replicates, move_to_cpu=False, save_replicates=True, **kwargs)[source]¶
Run the same pipeline several times from a configuration dictionary.
- Parameters
config (
Mapping[str,Any]) – The configuration dictionary for the experiment.replicates (
int) – The number of replicates to runmove_to_cpu (
bool) – Should the models be moved back to the CPU? Only relevant if training on GPU.save_replicates (
bool) – Should the artifacts of the replicates be saved?kwargs – Keyword arguments to be passed through to
pipeline_from_config().
- Return type