Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Padding for PR #1788 Markov Check, record lower recall nodes when plotting data #1789

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,12 @@ public List<List<Node>> getAndersonDarlingTestAcceptsRejectsNodesForAllNodesPlot
Double ar = ap_ar_ahp_ahr.get(1);
Double ahp = ap_ar_ahp_ahr.get(2);
Double ahr = ap_ar_ahp_ahr.get(3);
if (ar < lowRecallBound) {
lowAdjRecallNodes.add(x);
}
if (ahr < lowRecallBound) {
lowAHRecallNodes.add(x);
}
if (!localIndependenceFacts.isEmpty()) {
// All local nodes' p-values for node x.
List<List<Double>> shuffledlocalPValues = getLocalPValues(independenceTest, localIndependenceFacts, shuffleThreshold); // shuffleThreshold default to be 0.5
Expand Down Expand Up @@ -570,6 +576,9 @@ public List<List<Node>> getAndersonDarlingTestAcceptsRejectsNodesForAllNodesPlot
List<Double> lgp_lgr = getPrecisionAndRecallOnMarkovBlanketGraphPlotData2(x, estimatedCpdag, trueGraph);
Double lgp = lgp_lgr.get(0);
Double lgr = lgp_lgr.get(1);
if (lgr < lowRecallBound) {
lowLGRecallNodes.add(x);
}
if (!localIndependenceFacts.isEmpty()) {
// All local nodes' p-values for node x.
List<List<Double>> shuffledlocalPValues = getLocalPValues(independenceTest, localIndependenceFacts, shuffleThreshold);
Expand Down