Result

class ionworkspipeline.Result(params=None, initial_res=None, final_res=None)

A class to store the results of a ionworkspipeline.DataFit.

Parameters

param: array_like

The values of the parameters at each iteration.

initial_resarray_like

Dict of the results of the initial guess with keys “inputs” and “outputs”.

final_resarray_like

Dict of the results of the fit with keys “inputs” and “outputs”.

Attributes

parameter_valuesarray_like

The values of the parameters at each iteration.

initial_resultsarray_like

Dict of the results of the initial guess with keys “inputs” and “outputs”.

fit_resultsarray_like

Dict of the results of the fit with keys “inputs” and “outputs”.

Notes

Depending on how it was constructed, Result may not have all attributes listed here, and it may have additional attributes not listed here.

Extends: builtins.dict