5
5
6
6
7
7
class Parameter :
8
+ """A single model parameter, usually part of a :class:`Params` dictionary.
9
+
10
+ Examples
11
+ --------
12
+ ::
13
+
14
+ import lumicks.pylake as lk
15
+ fit = lk.FdFit(lk.ewlc_odijk_distance("my_model"))
16
+
17
+ print(fit.params) # Prints the model parameters
18
+ parameter = fit["my_model/Lc"] = 5 # parameter is of the type `Parameter` here.
19
+
20
+ # You can extract and/or modify fitting bounds
21
+ lower_bound = parameter.lower_bound
22
+
23
+ # Or read out the fitting error after the model has been fitted.
24
+ print(f"fitting error Lc: {parameter.stderr}")
25
+ """
26
+
8
27
__slots__ = [
9
28
"value" ,
10
29
"lower_bound" ,
@@ -43,13 +62,44 @@ def __init__(
43
62
Unit of the parameter
44
63
"""
45
64
self .value = value
65
+ """Parameter value."""
66
+
46
67
self .lower_bound = lower_bound
68
+ """Lower bound used when fitting."""
69
+
47
70
self .upper_bound = upper_bound
71
+ """Upper bound used when fitting."""
72
+
48
73
self .fixed = fixed
74
+ """Parameter is held fixed during fitting."""
75
+
49
76
self .shared = shared
77
+ """Parameter is shared between all sub-models.
78
+
79
+ Some parameters are not expected to be different between sub-models.
80
+ """
81
+
50
82
self .unit = unit
83
+ """Unit of this parameter."""
84
+
51
85
self .profile = None
86
+ """Profile likelihood result.
87
+
88
+ Profile likelihood estimates confidence intervals for the model parameters. These
89
+ confidence intervals can be used to assess whether a parameter can reliably be estimated
90
+ from the data. See also: :meth:`~lumicks.pylake.FdFit.profile_likelihood()`.
91
+ """
92
+
52
93
self .stderr = None
94
+ """Standard error of this parameter.
95
+
96
+ Standard errors are calculated after fitting the model. These asymptotic errors are based
97
+ on the fitted parameter values and model sensitivities.
98
+
99
+ .. note::
100
+
101
+ These errors may be inaccurate in the presence of model non-identifiability. See
102
+ also: :meth:`~lumicks.pylake.FdFit.profile_likelihood()`."""
53
103
54
104
def __float__ (self ):
55
105
return float (self .value )
@@ -89,8 +139,7 @@ def ci(self, percentile=0.95, dof=1):
89
139
90
140
91
141
class Params :
92
- """
93
- Model parameters.
142
+ """A dictionary of :class:`Parameter`.
94
143
95
144
Examples
96
145
--------
@@ -100,8 +149,8 @@ class Params:
100
149
fit = lk.FdFit(lk.ewlc_odijk_distance("my_model"))
101
150
102
151
print(fit.params) # Prints the model parameters
103
- fit["test_parameter "].value = 5 # Set parameter test_parameter to 5
104
- fit["fix_me "].fixed = True # Fix parameter fix_me (do not fit)
152
+ fit["my_model/Lc "].value = 5 # Set parameter my_model/Lc to 5
153
+ fit["my_model/Lc "].fixed = True # Fix parameter my_model/Lc (do not fit)
105
154
106
155
# Copy parameters from another Parameters into this one.
107
156
parameters.update_params(other_parameters)
0 commit comments