Parameter¶
-
class
gammapy.utils.fitting.
Parameter
(name, factor, unit='', scale=1, min=nan, max=nan, frozen=False)[source]¶ Bases:
object
Class representing model parameters.
Parameters: name : str
Name
factor : float or
Quantity
Factor
scale : float, optional
Scale (sometimes used in fitting)
unit :
Unit
or str, optionalUnit
min : float, optional
Minimum (sometimes used in fitting)
max : float, optional
Maximum (sometimes used in fitting)
frozen : bool, optional
Frozen? (used in fitting)
Attributes Summary
factor
Factor (float). frozen
Frozen? (used in fitting) (bool). max
Maximum (float). min
Minimum (float). name
Name (str). quantity
Value times unit ( Quantity
).scale
Scale (float). unit
Unit ( Unit
).value
Value = factor x scale (float). Methods Summary
autoscale
([method])Autoscale the parameters. to_dict
()Attributes Documentation
-
factor
¶ Factor (float).
-
frozen
¶ Frozen? (used in fitting) (bool).
-
max
¶ Maximum (float).
-
min
¶ Minimum (float).
-
name
¶ Name (str).
-
scale
¶ Scale (float).
-
value
¶ Value = factor x scale (float).
Methods Documentation
-