29#include <boost/math/tools/minima.hpp>
64 size_t nval = chi2List.
size();
65 if (nval == 0)
return 0;
67 double median = (nval & 1) ? chi2List[nval / 2].chi2
68 : 0.5 * (chi2List[nval / 2 - 1].chi2 + chi2List[nval / 2].chi2);
70 LOGLS_DEBUG(
_log,
"findOutliers chi2 stat: mean/median/sigma " << averageAndSigma.first <<
'/' << median
71 <<
'/' << averageAndSigma.second);
72 cut = averageAndSigma.first + nSigmaCut * averageAndSigma.second;
78 Eigen::VectorXi affectedParams(
_nTotal);
79 affectedParams.setZero();
83 for (
auto chi2 = chi2List.
rbegin(); chi2 != chi2List.
rend(); ++chi2) {
84 if (chi2->chi2 < cut)
break;
89 auto measuredStar = std::dynamic_pointer_cast<MeasuredStar>(chi2->star);
91 if (measuredStar ==
nullptr) {
93 fittedStar = std::dynamic_pointer_cast<FittedStar>(chi2->star);
94 if (fittedStar->getMeasurementCount() == 0) {
95 LOGLS_WARN(
_log,
"FittedStar with no measuredStars found as an outlier: "
96 << *fittedStar <<
" chi2: " << chi2->chi2);
101 "RefStar is outlier but not removed when not fitting FittedStar-RefStar values: "
102 << *(fittedStar->getRefStar()) <<
" chi2: " << chi2->chi2);
107 indices.
push_back(fittedStar->getIndexInMatrix());
108 LOGLS_TRACE(
_log,
"Removing refStar " << *(fittedStar->getRefStar()) <<
" chi2: " << chi2->chi2);
113 auto tempFittedStar = measuredStar->getFittedStar();
114 if (tempFittedStar->getMeasurementCount() == 1 && tempFittedStar->getRefStar() ==
nullptr) {
115 LOGLS_WARN(
_log,
"FittedStar with 1 measuredStar and no refStar found as an outlier: "
120 LOGLS_TRACE(
_log,
"Removing measStar " << *measuredStar <<
" chi2: " << chi2->chi2);
128 for (
auto const &i : indices) {
129 if (affectedParams(i) != 0) {
136 if (measuredStar ==
nullptr) {
144 for (
auto const &i : indices) {
151 << fsOutliers.
size() <<
" ref outliers ");
160 jacobian.setFromTriplets(tripletList.
begin(), tripletList.
end());
161 return jacobian * jacobian.transpose();
165void dumpMatrixAndGradient(
SparseMatrixD const &matrix, Eigen::VectorXd
const &grad,
168 Eigen::MatrixXd matrixDense(matrix);
169 std::string dumpMatrixPath = dumpFile +
"-mat" + ext;
172 std::string dumpGradPath = dumpFile +
"-grad" + ext;
175 LOGLS_INFO(_log,
"Dumped Hessian, gradient to: '" << dumpMatrixPath <<
"', '" << dumpGradPath <<
"'");
180 double sigmaRelativeTolerance,
bool doRankUpdate,
bool const doLineSearch,
206 << hessian.rows() <<
" non-zeros=" << hessian.nonZeros()
207 <<
" filling-frac = " << hessian.nonZeros() /
std::pow(hessian.rows(), 2));
209 if (dumpMatrixFile !=
"") {
210 if (hessian.rows() * hessian.cols() > 2e8) {
211 LOGLS_WARN(
_log,
"Hessian matrix is too big to dump to file, with rows, columns: "
212 << hessian.rows() <<
", " << hessian.cols());
214 dumpMatrixAndGradient(hessian, grad, dumpMatrixFile,
_log);
219 if (chol.info() != Eigen::Success) {
227 double oldSigmaCut = 0.;
228 double sigmaCut = 0.;
231 Eigen::VectorXd delta = chol.solve(grad);
233 scale = _lineSearch(delta);
239 LOGL_ERROR(
_log,
"chi2 is not finite. Aborting outlier rejection.");
243 if (currentChi2.
chi2 > oldChi2 && totalMeasOutliers + totalRefOutliers != 0) {
244 LOGL_WARN(
_log,
"chi2 went up, skipping outlier rejection loop");
248 oldChi2 = currentChi2.
chi2;
250 if (nSigmaCut == 0)
break;
255 double relChange = 0.;
256 if(oldSigmaCut!=0.) relChange = (1 - sigmaCut / oldSigmaCut);
258 LOGLS_DEBUG(
_log,
"findOutliers chi2 cut level: " << sigmaCut <<
", relative change: " << relChange);
261 if ((sigmaRelativeTolerance > 0) && (oldSigmaCut > 0 && relChange < sigmaRelativeTolerance)) {
262 LOGLS_INFO(
_log,
"Iterations stopped with chi2 cut at " << sigmaCut <<
" and relative change of "
266 totalMeasOutliers += msOutliers.
size();
267 totalRefOutliers += fsOutliers.
size();
268 oldSigmaCut = sigmaCut;
269 if (nOutliers == 0)
break;
280 H.setFromTriplets(outlierTriplets.
begin(), outlierTriplets.
end());
294 hessian = createHessian(
_nTotal, nextTripletList);
295 nextTripletList.
clear();
298 "Restarting factorization, hessian: dim="
299 << hessian.rows() <<
" non-zeros=" << hessian.nonZeros()
300 <<
" filling-frac = " << hessian.nonZeros() /
std::pow(hessian.rows(), 2));
301 chol.compute(hessian);
302 if (chol.info() != Eigen::Success) {
309 if (totalMeasOutliers + totalRefOutliers > 0) {
314 if (nSigmaCut != 0) {
315 LOGLS_INFO(
_log,
"Number of outliers (Measured + Reference = Total): "
316 << totalMeasOutliers <<
" + " << totalRefOutliers <<
" = "
317 << totalMeasOutliers + totalRefOutliers);
324 for (
auto &outlier : msOutliers) {
327 const CcdImage &ccdImage = outlier->getCcdImage();
334 for (
auto &measuredStar : outliers) {
335 auto fittedStar = measuredStar->getFittedStar();
336 measuredStar->setValid(
false);
337 fittedStar->getMeasurementCount()--;
342 for (
auto &fittedStar : outliers) {
343 fittedStar->setRefStar(
nullptr);
349 for (
auto const &ccdImage : ccdImageList) {
357 auto pos = baseName.
find(replaceStr);
359 measFilename.
replace(pos, replaceStr.
size(),
"-meas.csv");
361 refFilename.
replace(pos, replaceStr.
size(),
"-ref.csv");
366double FitterBase::_lineSearch(Eigen::VectorXd
const &delta) {
367 auto func = [
this, &delta](
double scale) {
368 auto offset = scale * delta;
377 auto result = boost::math::tools::brent_find_minima(func, -1.0, 2.0, bits);
Eigen::SparseMatrix< double, 0, Eigen::Index > SparseMatrixD
LSST DM logging module built on log4cxx.
#define LOGLS_WARN(logger, message)
Log a warn-level message using an iostream-based interface.
#define LOGL_WARN(logger, message...)
Log a warn-level message using a varargs/printf style interface.
#define LOGLS_INFO(logger, message)
Log a info-level message using an iostream-based interface.
#define LOGLS_ERROR(logger, message)
Log a error-level message using an iostream-based interface.
#define LOGL_ERROR(logger, message...)
Log a error-level message using a varargs/printf style interface.
#define LOGLS_DEBUG(logger, message)
Log a debug-level message using an iostream-based interface.
#define LOGLS_TRACE(logger, message)
Log a trace-level message using an iostream-based interface.
void update(SparseMatrixD const &H, bool UpOrDown)
Handler of an actual image from a single CCD.
Structure to accumulate the chi2 contributions per each star (to help find outliers).
std::pair< double, double > computeAverageAndSigma()
Compute the average and std-deviation of these chisq values.
Simple structure to accumulate chi2 and ndof.
A list of FittedStar s. Such a list is typically constructed by Associations.
void leastSquareDerivatives(TripletList &tripletList, Eigen::VectorXd &grad) const
Evaluates the chI^2 derivatives (Jacobian and gradient) for the current whatToFit setting.
void removeRefOutliers(FittedStarList &outliers)
Remove refStar outliers from the fit. No Refit done.
virtual void getIndicesOfMeasuredStar(MeasuredStar const &measuredStar, IndexVector &indices) const =0
Set the indices of a measured star from the full matrix, for outlier removal.
Chi2Statistic computeChi2() const
Returns the chi2 for the current state.
virtual void saveChi2MeasContributions(std::string const &filename) const =0
Save a CSV file containing residuals of measurement terms.
virtual void leastSquareDerivativesReference(FittedStarList const &fittedStarList, TripletList &tripletList, Eigen::VectorXd &grad) const =0
Compute the derivatives of the reference terms.
MinimizeResult minimize(std::string const &whatToFit, double nSigmaCut=0, double sigmaRelativeTolerance=0, bool doRankUpdate=true, bool doLineSearch=false, std::string const &dumpMatrixFile="")
Does a 1 step minimization, assuming a linear model.
virtual void saveChi2Contributions(std::string const &baseName) const
Save the full chi2 term per star that was used in the minimization, for debugging.
virtual void assignIndices(std::string const &whatToFit)=0
Set parameters to fit and assign indices in the big matrix.
virtual void offsetParams(Eigen::VectorXd const &delta)=0
Offset the parameters by the requested quantities.
std::shared_ptr< Associations > _associations
virtual void accumulateStatRefStars(Chi2Accumulator &accum) const =0
Compute the chi2 (per star or total, depending on which Chi2Accumulator is used) for RefStars.
Eigen::Index _nStarParams
virtual void saveChi2RefContributions(std::string const &filename) const =0
Save a CSV file containing residuals of reference terms.
virtual void leastSquareDerivativesMeasurement(CcdImage const &ccdImage, TripletList &tripletList, Eigen::VectorXd &grad, MeasuredStarList const *measuredStarList=nullptr) const =0
Compute the derivatives of the measured stars and model for one CcdImage.
void outliersContributions(MeasuredStarList &msOutliers, FittedStarList &fsOutliers, TripletList &tripletList, Eigen::VectorXd &grad)
Contributions to derivatives from (presumably) outlier terms.
std::size_t findOutliers(double nSigmaCut, MeasuredStarList &msOutliers, FittedStarList &fsOutliers, double &cut) const
Find Measurements and references contributing more than a cut, computed as.
virtual void accumulateStatImageList(CcdImageList const &ccdImageList, Chi2Accumulator &accum) const =0
Compute the chi2 (per star or total, depending on which Chi2Accumulator is used) for measurements.
void removeMeasOutliers(MeasuredStarList &outliers)
Remove measuredStar outliers from the fit. No Refit done.
A list of MeasuredStar. They are usually filled in Associations::createCcdImage.
Eigen::Index getNextFreeIndex() const
MinimizeResult
Return value of minimize()