Uses of Interface
org.nd4j.autodiff.samediff.SameDiffNoArgSingleLambda
-
Packages that use SameDiffNoArgSingleLambda Package Description org.nd4j.autodiff.samediff -
-
Uses of SameDiffNoArgSingleLambda in org.nd4j.autodiff.samediff
Methods in org.nd4j.autodiff.samediff with parameters of type SameDiffNoArgSingleLambda Modifier and Type Method Description static SDVariableControlFlow. ifCond(SameDiff sameDiff, String outputName, String ifName, @NonNull SameDiffNoArgSingleLambda cond, @NonNull SameDiffNoArgSingleLambda trueBody, @NonNull SameDiffNoArgSingleLambda falseBody)Constructs a If statement using the tensorflow style control flow operations (Switch and Merge) If the result of cond is true, returns the result of trueBody, otherwise returns the result of falseBody Note that cond and body lambdas are only called once to construct the graph.SDVariableSameDiff. ifCond(@NonNull SameDiffNoArgSingleLambda cond, @NonNull SameDiffNoArgSingleLambda trueBody, @NonNull SameDiffNoArgSingleLambda falseBody)SDVariableSameDiff. ifCond(String ifName, @NonNull SameDiffNoArgSingleLambda cond, @NonNull SameDiffNoArgSingleLambda trueBody, @NonNull SameDiffNoArgSingleLambda falseBody)SDVariableSameDiff. ifCond(String outputName, String ifName, @NonNull SameDiffNoArgSingleLambda cond, @NonNull SameDiffNoArgSingleLambda trueBody, @NonNull SameDiffNoArgSingleLambda falseBody)Constructs a If statement using the tensorflow style control flow operations (Switch and Merge) If the result of cond is true, returns the result of trueBody, otherwise returns the result of falseBody Note that cond and body lambdas are only called once to construct the graph.
-