com.linkedin.dagli.dag.DAGExecutor 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.dag;
/**
* DAG executors prepare and apply DAGs. Note that certain DAG executors (e.g. {@link FastPreparedDAGExecutor} may not
* support DAG preparation (training), only application (inference).
*
* To use an executor, it must be attached to a DAG via the DAG's {@code withExecutor(...)} method, e.g.
* {@link DAG1x1#withExecutor(DAGExecutor)}. The resulting DAG may then be prepared or applied and the provided
* executor will be used.
*/
public interface DAGExecutor extends PreparedDAGExecutor { }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy