You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When distance(pool, target) >> 1, this is a poor approximation, but the approximation becomes increasingly good as pool --> target, which is anyway what the optimizer is doing.
Implement this as an option to ConstraintSatisfactionMatcher
The text was updated successfully, but these errors were encountered:
The linear optimizer cannot do standardized mean difference, but there is a good approximation it can use, namely:
SMD = (mean(pool) - mean(target))/ (sqrt(var(pool) + var(target))
\approx (mean(pool) - mean(target))/ (sqrt(2 var(target))= (absolute mean difference) / (sqrt(2 var(target))
When distance(pool, target) >> 1, this is a poor approximation, but the approximation becomes increasingly good as pool --> target, which is anyway what the optimizer is doing.
Implement this as an option to ConstraintSatisfactionMatcher
The text was updated successfully, but these errors were encountered: