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

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

package org.nd4j.linalg.api.ops;

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

/**
 * A loss function for computing
 * the delta between two arrays
 *
 * @author Adam Gibson
 */
public interface LossFunction extends Accumulation {
    /**
     * The true
     * @return
     */
    INDArray input();

    /**
     * The guess
     * @return
     */
    INDArray output();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy