Skip to content

FEAT: Pipeline and processor elements #1

@mberz

Description

@mberz

We could consider implementing different SDM variants using pipelines in a similar way to scikit-learn.

This would require that each element has compatible interfaces (for example a process or __call__ function, in scikit learn they are called transform or fit)
In this pipeline logic, the output of one element would always be passed to the respective processing method of the next class.

analysis_step = Analyzer(parametrization_analyzer)
output_analysis = analysis_step(input_signal)

synthesis_step = Synthesizer(parametrization_synthesizer)
output_signal = synthesis_step(output_analysis)
pipeline = SDMPipeline(analysis_step, synthesis_step, postprocessor, post-processor_2)
output_signal = pipeline(input_signal)
pipeline = sdm_classic(parameters)
output = pipeline(input)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions