Cauchy#

class zfit.pdf.Cauchy(m, gamma, obs, *, extended=None, norm=None, name='Cauchy')[source]#

Bases: WrapDistribution, SerializableMixin

Non-relativistic Breit-Wigner (Cauchy) PDF representing the energy distribution of a decaying particle.

The (unnormalized) shape of the non-relativistic Breit-Wigner is given by

\[\frac{1}{\gamma \left[1 + \left(\frac{x - m}{\gamma}\right)^2\right]}\]

with \(m\) the mean and \(\gamma\) the width of the distribution.

Parameters:
  • m (ztyping.ParamTypeInput) – Invariant mass of the unstable particle.

  • gamma (ztyping.ParamTypeInput) – Width of the shape.

  • obs (ztyping.ObsTypeInput) – Observables and normalization range the pdf is defined in

  • extended (ExtendedInputType) – ​The overall yield of the PDF. If this is parameter-like, it will be used as the yield, the expected number of events, and the PDF will be extended. An extended PDF has additional functionality, such as the ext_* methods and the counts (for binned PDFs).​

  • norm (NormInputType) – ​Normalization of the PDF. By default, this is the same as the default space of the PDF.​

  • name (str) – ​Human-readable name or label of the PDF for better identification. Has no programmatical functional purpose as identification.​

add_cache_deps(cache_deps, allow_non_cachable=True)#

Add dependencies that render the cache invalid if they change.

Parameters:
  • cache_deps (ztyping.CacherOrCachersType) –

  • allow_non_cachable (bool) – If True, allow cache_dependents to be non-cachables. If False, any cache_dependents that is not a ZfitGraphCachable will raise an error.

Raises:

TypeError – if one of the cache_dependents is not a ZfitGraphCachable _and_ allow_non_cachable if False.

analytic_integrate(limits, norm=None, *, norm_range=None)#

Analytical integration over function and raise Error if not possible.

Parameters:
  • limits (ztyping.LimitsType) – ​Limits of the integration.​

  • norm (ztyping.LimitsType) – ​Normalization of the integration. By default, this is the same as the default space of the PDF. False means no normalization and returns the unnormed integral.​

Return type:

ztyping.XType

Returns:

The integral value

Raises:
  • AnalyticIntegralNotImplementedError – If no analytical integral is available (for this limits).

  • NormRangeNotImplementedError – if the norm argument is not supported. This means that no analytical normalization is available, explicitly: the analytical integral over the limits = norm is not available.

as_func(norm=False, *, norm_range=None)#

Return a Function with the function model(x, norm=norm).

Parameters:

norm (ztyping.LimitsType) –

copy(**override_parameters)#

Creates a copy of the model.

Note: the copy model may continue to depend on the original initialization arguments.

Parameters:

**override_parameters – String/value dictionary of initialization arguments to override with new value.

Return type:

BasePDF

Returns:

A new instance of type(self) initialized from the union

of self.parameters and override_parameters, i.e., dict(self.parameters, **override_parameters).

create_extended(yield_, name=None, *, name_addition=None)#

Return an extended version of this pdf with yield yield_. The parameters are shared.

Parameters:
  • yield – ​Yield (expected number of events) of the PDF. This is the expected number of events. If this is parameter-like, it will be used as the yield, the expected number of events, and the PDF will be extended. An extended PDF has additional functionality, such as the ext_* methods and the counts (for binned PDFs).​

  • name (str | None) – New name of the PDF. If None, the name of the PDF with a trailing “_ext” is used.

Returns:

a new PDF that is extended

Return type:

ZfitPDF

create_projection_pdf(limits, *, options=None, limits_to_integrate=None)#

Create a PDF projection by integrating out some dimensions.

The new projection pdf is still fully dependent on the pdf it was created with.

Parameters:
Return type:

ZfitPDF

Returns:

A pdf without the dimensions from limits.

create_sampler(n=None, limits=None, fixed_params=True)#

Create a Sampler that acts as Data but can be resampled, also with changed parameters and n.

If limits is not specified, space is used (if the space contains limits). If n is None and the model is an extended pdf, ‘extended’ is used by default.

Parameters:
  • n (ztyping.nSamplingTypeIn) –

    The number of samples to be generated. Can be a Tensor that will be or a valid string. Currently implemented:

    • ’extended’: samples poisson(yield) from each pdf that is extended.

  • limits (ztyping.LimitsType) – From which space to sample.

  • fixed_params (bool | list[ZfitParameter] | tuple[ZfitParameter]) – A list of Parameters that will be fixed during several resample calls. If True, all are fixed, if False, all are floating. If a Parameter is not fixed and its value gets updated (e.g. by a Parameter.set_value() call), this will be reflected in resample. If fixed, the Parameter will still have the same value as the Sampler has been created with when it resamples.

Return type:

Sampler

Returns:

Sampler

Raises:
  • NotExtendedPDFError – if ‘extended’ is chosen (implicitly by default or explicitly) as an option for n but the pdf itself is not extended.

  • ValueError – if n is an invalid string option.

  • InvalidArgumentError – if n is not specified and pdf is not extended.

property dtype: DType#

The dtype of the object.

property extended: Parameter | None#

Return the yield (only for extended models).

Returns:

The yield of the current model or None

classmethod from_asdf(asdf_obj, *, reuse_params=None)#

Load an object from an asdf file.

Args#

asdf_obj: Object reuse_params:​If parameters, the parameters

will be reused if they are given. If a parameter is given, it will be used as the parameter with the same name. If a parameter is not given, a new parameter will be created.​

classmethod from_dict(dict_, *, reuse_params=None)#

Creates an object from a dictionary structure as generated by to_dict.

Parameters:
  • dict – Dictionary structure.

  • reuse_params – ​If parameters, the parameters will be reused if they are given. If a parameter is given, it will be used as the parameter with the same name. If a parameter is not given, a new parameter will be created.​

Returns:

The deserialized object.

classmethod from_json(cls, json, *, reuse_params=None)#

Load an object from a json string.

Parameters:
  • json (str) – Serialized object in a JSON string.

  • reuse_params – ​If parameters, the parameters will be reused if they are given. If a parameter is given, it will be used as the parameter with the same name. If a parameter is not given, a new parameter will be created.​

Return type:

object

Returns:

The deserialized object.

get_cache_deps(only_floating=True)#

Return a set of all independent Parameter that this object depends on.

Parameters:

only_floating (bool) – If True, only return floating Parameter

Return type:

OrderedSet

get_dependencies(only_floating: bool = True) ztyping.DependentsType#

DEPRECATED FUNCTION

Deprecated: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Use get_params instead if you want to retrieve the independent parameters or get_cache_deps in case you need the numerical cache dependents (advanced). :rtype: OrderedSet

get_params(floating=True, is_yield=None, extract_independent=True, only_floating=<class 'zfit.util.checks.NotSpecified'>)#

Recursively collect parameters that this object depends on according to the filter criteria.

Which parameters should be included can be steered using the arguments as a filter.
  • None: do not filter on this. E.g. floating=None will return parameters that are floating as well as

    parameters that are fixed.

  • True: only return parameters that fulfil this criterion

  • False: only return parameters that do not fulfil this criterion. E.g. floating=False will return

    only parameters that are not floating.

Parameters:
  • floating (bool | None) – if a parameter is floating, e.g. if floating() returns True

  • is_yield (bool | None) – if a parameter is a yield of the _current_ model. This won’t be applied recursively, but may include yields if they do also represent a parameter parametrizing the shape. So if the yield of the current model depends on other yields (or also non-yields), this will be included. If, however, just submodels depend on a yield (as their yield) and it is not correlated to the output of our model, they won’t be included.

  • extract_independent (bool | None) – If the parameter is an independent parameter, i.e. if it is a ZfitIndependentParameter.

Return type:

set[ZfitParameter]

classmethod get_repr()#

Abstract representation of the object for serialization.

This objects knows how to serialize and deserialize the object and is used by the to_json, from_json, to_dict and from_dict methods.

Returns:

The representation of the object.

Return type:

pydantic.BaseModel

get_yield()#

Return the yield (only for extended models).

Return type:

Parameter | None

Returns:

The yield of the current model or None

property is_extended: bool#

Flag to tell whether the model is extended or not.

Returns:

A boolean.

log_pdf(x, norm=None, *, norm_range=None)#

Log probability density function normalized over norm_range.

Parameters:
  • x (ztyping.XType) – ​Data to evaluate the method on. Should be ZfitData or a mapping of obs to numpy-like arrays. If an array is given, the first dimension is interpreted as the events while the second is meant to be the dimensionality of a single event.​

  • norm (ztyping.LimitsType) – ​Normalization of the function. By default, this is the norm of the PDF (which by default is the same as the space of the PDF). Should be ZfitSpace to define the space to normalize over.​

Return type:

ztyping.XType

Returns:

A Tensor of type self.dtype.

property name: str#

The name of the object.

property norm: Space | None | bool#

Return the current normalization range. If None and the obs have limits, they are returned.

Returns:

The current normalization range.

property norm_range: Space | None | bool#

Return the current normalization range. If None and the obs have limits, they are returned. (deprecated)

Deprecated: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Use the norm attribute instead.

Returns:

The current normalization range.

normalization(norm, *, options=None, limits=None)#

Return the normalization of the function (usually the integral over norm). (deprecated arguments)

Deprecated: SOME ARGUMENTS ARE DEPRECATED: (limits). They will be removed in a future version. Instructions for updating: Use norm instead.

Parameters:
  • norm (ztyping.LimitsType) – ​Normalization of the function. By default, this is the norm of the PDF (which by default is the same as the space of the PDF). Should be ZfitSpace to define the space to normalize over.​

  • () (options) – |@doc:pdf.param.options||@docend:pdf.param.options|

Return type:

ztyping.XType

Returns:

The normalization value

numeric_integrate(limits, norm=None, *, options=None, norm_range=None)#

Numerical integration over the model.

Parameters:
  • limits (ztyping.LimitsType) – ​Limits of the integration.​

  • norm (ztyping.LimitsType) – ​Normalization of the integration. By default, this is the same as the default space of the PDF. False means no normalization and returns the unnormed integral.​

  • options

    ​Options for the integration. Additional options for the integration. Currently supported options are: - type: one of (bins)

    This hints that bins are integrated. A method that is vectorizable, non-dynamic and therefore less suitable for complicated functions is chosen.​

Return type:

ztyping.XType

Returns:

The integral value

classmethod register_additional_repr(**kwargs)#

Register an additional attribute to add to the repr.

Parameters:
  • an (any keyword argument. The value has to be gettable from the instance (has to be) –

  • self. (attribute or callable method of) –

classmethod register_analytic_integral(cls, func, limits=None, priority=50, *, supports_norm=None, supports_norm_range=None, supports_multiple_limits=None)#

Register an analytic integral with the class. (deprecated arguments)

Deprecated: SOME ARGUMENTS ARE DEPRECATED: (supports_norm_range). They will be removed in a future version. Instructions for updating: Use supports_norm instead.

Parameters:
  • func (Callable) –

    A function that calculates the (partial) integral over the axes limits. The signature has to be the following:

    • x (ZfitData, None): the data for the remaining axes in a partial

      integral. If it is not a partial integral, this will be None.

    • limits (ZfitSpace): the limits to integrate over.

    • norm_range (ZfitSpace, None): Normalization range of the integral.

      If not supports_supports_norm_range, this will be None.

    • params (Dict[param_name, zfit.Parameters]): The parameters of the model.

    • model (ZfitModel):The model that is being integrated.

  • limits (ztyping.LimitsType) – If a Space is given, it is used as limits. Otherwise arguments to instantiate a Range class can be given as follows.|limits_init|

  • priority (int | float) – Priority of the function. If multiple functions cover the same space, the one with the highest priority will be used.

  • supports_multiple_limits (bool | None) – If True, the ``limits` given to the integration function can have multiple limits. If False, only simple limits will pass through and multiple limits will be auto-handled.

  • supports_norm (bool | None) – If True, norm argument to the function may not be None. If False, norm will always be None and care is taken of the normalization automatically.

Return type:

None

register_cacher(cacher)#

Register a cacher that caches values produces by this instance; a dependent.

Parameters:

cacher (ztyping.CacherOrCachersType) –

classmethod register_inverse_analytic_integral(func)#

Register an inverse analytical integral, the inverse (unnormalized) cdf.

Parameters:

func (Callable) – A function with the signature func(x, params), where x is a Data object and params is a dict.

Return type:

None

reset_cache_self()#

Clear the cache of self and all dependent cachers.

sample(n=None, limits=None, x=None)#

Sample n points within limits from the model.

If limits is not specified, space is used (if the space contains limits). If n is None and the model is an extended pdf, ‘extended’ is used by default.

Parameters:
  • n (ztyping.nSamplingTypeIn) –

    The number of samples to be generated. Can be a Tensor that will be or a valid string. Currently implemented:

    • ’extended’: samples poisson(yield) from each pdf that is extended.

  • limits (ztyping.LimitsType) – In which region to sample in

Return type:

SampleData

Returns:

SampleData(n_obs, n_samples)

Raises:
  • NotExtendedPDFError – if ‘extended’ is (implicitly by default or explicitly) chosen as an option for n but the pdf itself is not extended.

  • ValueError – if n is an invalid string option.

  • InvalidArgumentError – if n is not specified and pdf is not extended.

set_norm_range(norm: ztyping.LimitsTypeInput)#

Set the normalization range (temporarily if used with contextmanager). (deprecated)

Deprecated: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Prefer to create a new PDF with norm set.

Parameters:

norm (Union[ZfitLimit, Tensor, ndarray, Iterable[float], float, Tuple[float], List[float], bool, None]) –

set_yield(value)#

Make the model extended inplace by setting a yield. If possible, prefer to use create_extended.

This does not alter the general behavior of the PDF. The pdf and integrate and similar methods will continue to return the same - normalized to 1 - values. However, not only can this parameter be accessed via get_yield, the methods ext_pdf and ext_integral provide a version of pdf and integrate respecetively that is multiplied by the yield.

These can be useful for plotting and for binned likelihoods.

Parameters:

value – ​Yield (expected number of events) of the PDF. This is the expected number of events. If this is parameter-like, it will be used as the yield, the expected number of events, and the PDF will be extended. An extended PDF has additional functionality, such as the ext_* methods and the counts (for binned PDFs).​

to_asdf()#

Convert the object to an asdf file.

to_binned(space, *, extended=None, norm=None)#

Convert to binned pdf, returns self if already binned.

to_dict()#

Convert the object to a nested dictionary structure.

Returns:

The dictionary structure.

Return type:

dict

to_json()#

Convert the object to a json string.

Returns:

The json string.

Return type:

str

to_unbinned()#

Convert to unbinned pdf, returns self if already unbinned.

to_yaml()#

Convert the object to a yaml string.

Returns:

The yaml string.

Return type:

str

unnormalized_pdf(x: ztyping.XType) ztyping.XType#

PDF “unnormalized”. Use functions for unnormalized pdfs. this is only for performance in special cases. (deprecated)

Deprecated: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Use pdf(norm=False) instead

Parameters:

x (Union[float, Tensor]) – ​Data to evaluate the method on. Should be ZfitData or a mapping of obs to numpy-like arrays. If an array is given, the first dimension is interpreted as the events while the second is meant to be the dimensionality of a single event.​

Return type:

Union[float, Tensor]

Returns:

1-dimensional tf.Tensor containing the unnormalized pdf.

update_integration_options(draws_per_dim=None, mc_sampler=None, tol=None, max_draws=None, draws_simpson=None)#

Set the integration options.

Parameters:
  • max_draws (default ~1'000'000) – Maximum number of draws when integrating . Typically 500’000 - 5’000’000.

  • tol – Tolerance on the error of the integral. typically 1e-4 to 1e-8

  • draws_per_dim – The draws for MC integration to do per iteration. Can be set to 'auto’.

  • draws_simpson – Number of points in one dimensional Simpson integration. Can be set to 'auto'.