All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.linkedin.dagli.preparer.AbstractPreparerVariadic Maven / Gradle / Ivy

Go to download

DAG-oriented machine learning framework for bug-resistant, readable, efficient, maintainable and trivially deployable models in Java and other JVM languages

There is a newer version: 15.0.0-beta9
Show newest version
package com.linkedin.dagli.preparer;

import com.linkedin.dagli.objectio.ObjectReader;
import com.linkedin.dagli.transformer.PreparedTransformerVariadic;


/**
 * Base class for preparers for variadic-arity transformers.
 *
 * @param  the type of input to the transformer
 * @param  the type of value produced by the transformer
 * @param  the type of the resultant prepared transformer
 */
public abstract class AbstractPreparerVariadic>
    extends AbstractPreparer implements PreparerVariadic {
  @Override
  public final void processUnsafe(Object[] values) {
    PreparerVariadic.super.processUnsafe(values);
  }

  @Override
  public final PreparerResultMixed, N> finishUnsafe(
      ObjectReader inputs) {
    return PreparerVariadic.super.finishUnsafe(inputs);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy