LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
priorsContinued.py
Go to the documentation of this file.
1#!/usr/bin/env python
2#
3# LSST Data Management System
4# Copyright 2008-2013 LSST Corporation.
5#
6# This product includes software developed by the
7# LSST Project (http://www.lsst.org/).
8#
9# This program is free software: you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation, either version 3 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the LSST License Statement and
20# the GNU General Public License along with this program. If not,
21# see <http://www.lsstcorp.org/LegalNotices/>.
22#
23
24__all__ = ("fitMixture", "SemiEmpiricalPriorConfig",
25 "SoftenedLinearPriorControl")
26
27import numpy as np
28
29from lsst.pex.config import makeConfigClass
30from lsst.utils import continueClass
31
32from ..mixture import Mixture
33from .priors import (SemiEmpiricalPriorControl, SemiEmpiricalPrior,
34 SoftenedLinearPriorControl, SoftenedLinearPrior,
35 MixturePrior)
36
37
38SemiEmpiricalPriorConfig = makeConfigClass(SemiEmpiricalPriorControl)
39
40SoftenedLinearPriorConfig = makeConfigClass(SoftenedLinearPriorControl)
41
42
43@continueClass # noqa: F811 (FIXME: remove for py 3.8+)
44class SemiEmpiricalPrior: # noqa: F811
45
46 ConfigClass = SemiEmpiricalPriorConfig
47
48
49@continueClass # noqa: F811 (FIXME: remove for py 3.8+)
50class SoftenedLinearPrior: # noqa: F811
51
52 ConfigClass = SoftenedLinearPriorConfig
53
54
55def fitMixture(data, nComponents, minFactor=0.25, maxFactor=4.0,
56 nIterations=20, df=float("inf")):
57 """Fit a ``Mixture`` distribution to a set of (e1, e2, r) data points,
58 returing a ``MixturePrior`` object.
59
60 Parameters
61 ----------
62 data : numpy.ndarray
63 array of data points to fit; shape=(N,3)
64 nComponents : int
65 number of components in the mixture distribution
66 minFactor : float
67 ellipticity variance of the smallest component in the initial mixture,
68 relative to the measured variance
69 maxFactor : float
70 ellipticity variance of the largest component in the initial mixture,
71 relative to the measured variance
72 nIterations : int
73 number of expectation-maximization update iterations
74 df : float
75 number of degrees of freedom for component Student's T distributions
76 (inf=Gaussian).
77 """
78 components = Mixture.ComponentList()
79 rMu = data[:, 2].mean()
80 rSigma = data[:, 2].var()
81 eSigma = 0.5*(data[:, 0].var() + data[:, 1].var())
82 mu = np.array([0.0, 0.0, rMu], dtype=float)
83 baseSigma = np.array([[eSigma, 0.0, 0.0],
84 [0.0, eSigma, 0.0],
85 [0.0, 0.0, rSigma]])
86 for factor in np.linspace(minFactor, maxFactor, nComponents):
87 sigma = baseSigma.copy()
88 sigma[:2, :2] *= factor
89 components.append(Mixture.Component(1.0, mu, sigma))
90 mixture = Mixture(3, components, df)
91 restriction = MixturePrior.getUpdateRestriction()
92 for i in range(nIterations):
93 mixture.updateEM(data, restriction)
94 return mixture
A weighted Student's T or Gaussian distribution used as a component in a Mixture.
Definition: Mixture.h:47
def fitMixture(data, nComponents, minFactor=0.25, maxFactor=4.0, nIterations=20, df=float("inf"))