ml-algorithms/src/main/java/org/opensearch/ml/engine/algorithms/anomalylocalization/CountMinSketch.java [22:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected static final double INV_DELTOID = 1 / 0.01;
    protected static final double LOG_BASE_2 = 2;
    protected static final double INV_EPSILON = 1 / 0.001;

    private int numHashes;
    private int numBuckets;
    private double[][] counts;
    private int[] hashes;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ml-algorithms/src/main/java/org/opensearch/ml/engine/algorithms/anomalylocalization/CountSketch.java [22:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected static final double INV_DELTOID = 1 / 0.01;
    protected static final double LOG_BASE_2 = 2;
    protected static final double INV_EPSILON = 1 / 0.001;

    private int numHashes;
    private int numBuckets;
    private double[][] counts;
    private int[] hashes;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



