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

org.nd4j.autodiff.execution.conf.OutputMode Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.autodiff.execution.conf;

/**
 * @author [email protected]
 */
public enum OutputMode {
    /**
     * only final nodes of graph will be returned
     */
    IMPLICIT,

    /**
     * only declared output fields
     */
    EXPLICIT,

    /**
     * both options enabled
     */
    EXPLICIT_AND_IMPLICIT,

    /**
     * whole content of VariableSpace will be returned back
     */
    VARIABLE_SPACE,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy