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
Given the right circumstances in the data, trained m-values can end up as 0 (probably "really" just smaller than floating point precision). This leads to math domain error when we try to take the log of the (also 0) Bayes factor, in ComparisonLevel._as_detailed_record, in e.g. charts such as match_weights_chart or m_u_parameters_chart.
Related is #1889, which has the same root cause, and can be reproduced if in the above we call linker.inference.predict() instead of the match weights chart. Opening this separately though, as that issue occurs during SQL execution, while here we hit the issue in python, and so these will potentially require different solutions.
The text was updated successfully, but these errors were encountered:
Given the right circumstances in the data, trained m-values can end up as
0
(probably "really" just smaller than floating point precision). This leads tomath domain error
when we try to take the log of the (also 0) Bayes factor, inComparisonLevel._as_detailed_record
, in e.g. charts such asmatch_weights_chart
orm_u_parameters_chart
.Here is a not-very-elegant reprex:
Related is #1889, which has the same root cause, and can be reproduced if in the above we call
linker.inference.predict()
instead of the match weights chart. Opening this separately though, as that issue occurs during SQL execution, while here we hit the issue in python, and so these will potentially require different solutions.The text was updated successfully, but these errors were encountered: