Searched refs:TolerantLoss (Results 1 – 5 of 5) sorted by relevance
/external/ceres-solver/internal/ceres/ |
D | loss_function_test.cc | 114 TEST(LossFunction, TolerantLoss) { in TEST() argument 115 AssertLossFunctionIsValid(TolerantLoss(0.7, 0.4), 0.357); in TEST() 116 AssertLossFunctionIsValid(TolerantLoss(0.7, 0.4), 1.792); in TEST() 117 AssertLossFunctionIsValid(TolerantLoss(0.7, 0.4), 55.5); in TEST() 118 AssertLossFunctionIsValid(TolerantLoss(1.3, 0.1), 0.357); in TEST() 119 AssertLossFunctionIsValid(TolerantLoss(1.3, 0.1), 1.792); in TEST() 120 AssertLossFunctionIsValid(TolerantLoss(1.3, 0.1), 55.5); in TEST() 123 TolerantLoss(0.7, 0.4).Evaluate(0.0, rho); in TEST() 127 AssertLossFunctionIsValid(TolerantLoss(20.0, 1.0), 20.0 + 36.6); in TEST() 128 AssertLossFunctionIsValid(TolerantLoss(20.0, 1.0), 20.0 + 36.7); in TEST() [all …]
|
D | loss_function.cc | 89 TolerantLoss::TolerantLoss(double a, double b) in TolerantLoss() function in ceres::TolerantLoss 97 void TolerantLoss::Evaluate(double s, double rho[3]) const { in Evaluate()
|
D | c_api.cc | 127 return new ceres::TolerantLoss(a, b); in ceres_create_tolerant_loss_function_data()
|
/external/ceres-solver/include/ceres/ |
D | loss_function.h | 268 class CERES_EXPORT TolerantLoss : public LossFunction { 270 explicit TolerantLoss(double a, double b);
|
/external/ceres-solver/docs/source/ |
D | modeling.rst | 920 .. class:: TolerantLoss
|