fix: adjust NUM_BINS and LAPLACE constants for improved model performance
This commit is contained in:
@@ -7,11 +7,11 @@ import java.util.*;
|
|||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
private static final int NUM_BINS = 9;
|
private static final int NUM_BINS = 14;
|
||||||
private static final int WINDOW_LEN = 50;
|
private static final int WINDOW_LEN = 50;
|
||||||
private static final double PRIOR_N = 0.95;
|
private static final double PRIOR_N = 0.95;
|
||||||
private static final double PRIOR_A = 0.05;
|
private static final double PRIOR_A = 0.05;
|
||||||
private static final double LAPLACE = 1e-6;
|
private static final double LAPLACE = 1.0;
|
||||||
|
|
||||||
|
|
||||||
static void main(String[] args) throws IOException {
|
static void main(String[] args) throws IOException {
|
||||||
|
|||||||
Reference in New Issue
Block a user