com.linkedin.dagli.dag.DAGResult1 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
// AUTOGENERATED CODE. DO NOT MODIFY DIRECTLY! Instead, please modify the dag/DAGResultX.ftl file.
// See the README in the module's src/template directory for details.
package com.linkedin.dagli.dag;
import com.linkedin.dagli.objectio.ObjectReader;
/**
* Interface for obtaining the results of executing a DAG. As a DAG may have multiple output nodes, whose result
* values are the "outputs" of the DAG. These may be retrieved together (as a tuple) directly from this interface
* (which extends {@link ObjectReader}), or individually via the getResultX() methods.
*
* The ordering of the outputs is determined when the DAG is created, matching the order of the outputs passed in the
* DAG.withPlaceholders(...).withOutputs(...) call.
*
* @param the type of result #1 of the DAG
*/
public interface DAGResult1 extends ObjectReader {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy