Interface Algorithm<T extends Model>

    • Method Detail

      • handles

        String handles​(Dataset data,
                       boolean strict)
        Checks whether the data can be handled.
        Parameters:
        data - the data to check
        strict - whether to perform a strict check
        Returns:
        null if data can be handled, otherwise error message
      • buildModel

        T buildModel​(Dataset data)
              throws Exception
        Builds a model from the data.
        Parameters:
        data - the data to use for building the model
        Returns:
        the generated model
        Throws:
        Exception - if the build fails