Class BinaryNaiveBayesModelReader

    • Constructor Detail

      • BinaryNaiveBayesModelReader

        public BinaryNaiveBayesModelReader​(DataInputStream dis)
        Constructor which directly instantiates the DataInputStream containing the model contents.
        Parameters:
        dis - The DataInputStream containing the model information.
      • BinaryNaiveBayesModelReader

        public BinaryNaiveBayesModelReader​(File f)
                                    throws IOException
        Constructor which takes a File and creates a reader for it. Detects whether the file is gzipped or not based on whether the suffix contains ".gz"
        Parameters:
        f - The File in which the model is stored.
        Throws:
        IOException