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

org.nd4j.linalg.api.ops.GradientOp Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.linalg.api.ops;

import org.nd4j.linalg.api.ndarray.INDArray;

/**
 * A gradient op represents
 * a jacobian operation
 *
 * @author Adam Gibson
 */
public  interface GradientOp extends  Op {

    /**
     * The array
     * to the gradient with respect to
     * @return
     */
    INDArray wrt();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy