Interface IncrementalAlgorithm<T extends Model>

    • Method Detail

      • updateModel

        void updateModel​(T model,
                         Row row)
                  throws Exception
        Updates the model with the given data.
        Parameters:
        model - the model to update
        row - the data to train with
        Throws:
        Exception - if update fails
      • updateModel

        void updateModel​(T model,
                         Dataset data)
                  throws Exception
        Updates the model with the given data.
        Parameters:
        model - the model to update
        data - the data to train with
        Throws:
        Exception - if update fails