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

com.linkedin.dagli.dag.DAGExecutor 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.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