Class BasicModel

    • Constructor Detail

      • BasicModel

        public BasicModel()
        Sole constructor. (For invocation by subclass constructors, typically implicit.)
    • Method Detail

      • score

        public abstract double score​(BasicStats stats,
                                     double tfn,
                                     double aeTimes1pTfn)
        Returns the informative content score combined with the after effect, more specifically informationContentScore * aeTimes1pTfn / (1 + tfn). This function must be non-decreasing with tfn.
      • explain

        public abstract Explanation explain​(BasicStats stats,
                                            double tfn,
                                            double aeTimes1pTfn)
        Returns an explanation for the score. Subclasses must override this method.
      • toString

        public abstract String toString()
        Subclasses must override this method to return the code of the basic model formula. Refer to the original paper for the list.
        Overrides:
        toString in class Object