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

org.nd4j.autodiff.samediff.api.OutAndGrad Maven / Gradle / Ivy

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

import lombok.AllArgsConstructor;
import lombok.Data;
import org.nd4j.linalg.api.ndarray.INDArray;

import java.util.Map;

/**
 * A simple object holding two maps - one of output arrays, another of gradient arrays
 */
@AllArgsConstructor
@Data
public class OutAndGrad {

    private final Map outputs;
    private final Map gradients;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy