com.linkedin.dagli.preparer.AbstractPreparer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
DAG-oriented machine learning framework for bug-resistant, readable, efficient, maintainable and trivially deployable models in Java and other JVM languages
package com.linkedin.dagli.preparer;
import com.linkedin.dagli.transformer.PreparedTransformer;
/**
* Base class for abstract preparers. Do not derive from this class directly; instead, derive from one of its
* subclasses, e.g. {@link AbstractPreparerDynamic}, {@link AbstractBatchPreparer4},
* {@link AbstractStreamPreparerVariadic}, etc.
*
* @param the type of result produced by the prepared transformer
* @param the type of the prepared transformer
*/
abstract class AbstractPreparer> implements Preparer { }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy