Skip to content

Commit

Permalink
default outlier/inlier to off
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfrantz committed Jan 18, 2024
1 parent 35fb78f commit f391970
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/aux-level/param-aux.c
Original file line number Diff line number Diff line change
Expand Up @@ -955,10 +955,11 @@ void write_par_hl_noise(FILE *fp, bool verbose){
fprintf(fp, "# can be restored if its residual is lower than a multiple of the noise\n");
fprintf(fp, "# (BELOW_NOISE). Higher/Lower values will restore observations more aggres-\n");
fprintf(fp, "# sively/conservative. Give 0 to both parameters to disable the filtering.\n");
fprintf(fp, "# ABOVE_NOISE = 3, BELOW_NOISE = 1 are parameters that have worked in some settings.\n");
fprintf(fp, "# Type: Float. Valid range: [0,...\n");
}
fprintf(fp, "ABOVE_NOISE = 3\n");
fprintf(fp, "BELOW_NOISE = 1\n");
fprintf(fp, "ABOVE_NOISE = 0\n");
fprintf(fp, "BELOW_NOISE = 0\n");

return;
}
Expand Down

0 comments on commit f391970

Please sign in to comment.