nasa / progpy

The NASA Prognostic Python Packages is a Python framework focused on defining and building models and algorit for prognostics (computation of remaining useful life) of engineering systems, and provides a set of models and algorithms for select components developed within this framework, suitable for use in prognostic applications.
https://nasa.github.io/progpy/
Other
52 stars 7 forks source link

Improved Composite parameters #143

Closed teubert closed 1 month ago

teubert commented 1 month ago

Requirement Text Allow the setting of composed model parameters in a CompositeModel

Background Information Right now the composite model expects that you set the parameters either before creation or by accessing m.parameters['models'].parameters. This is 1. messy and 2. doesn't work with prog_server.

Suggested Solution Parse parameters using 'model_name.parameter' so m.parameters['abc.def'] would set m.parameters['model'].parameters['def'].

DoD