Uses of Enum Class
org.tribuo.util.onnx.ONNXOperators
-
Uses of ONNXOperators in org.tribuo.util.onnx
Modifier and TypeMethodDescriptionstatic ONNXOperators
Returns the enum constant of this class with the specified name.static ONNXOperators[]
ONNXOperators.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionONNXRef.apply
(ONNXOperators op) Convenience method that callsONNXContext.operation(ONNXOperators, List, String)
, using this ONNXRef as the argument toinputs
.ONNXRef.apply
(ONNXOperators op, String outputName) Convenience method that callsONNXContext.operation(ONNXOperators, List, String)
, using this ONNXRef as the argument toinputs
.Convenience method that callsONNXContext.operation(ONNXOperators, List, List, Map)
, using this ONNXRef as the argument toinputs
.ONNXRef.apply
(ONNXOperators op, List<ONNXRef<?>> others) Convenience method that callsONNXContext.operation(ONNXOperators, List, String, Map)
, using this ONNXRef as the first argument toinputs
, withotherInputs
append as subsequent arguments.ONNXRef.apply
(ONNXOperators op, List<ONNXRef<?>> others, String outputName) Convenience method that callsONNXContext.operation(ONNXOperators, List, String, Map)
, using this ONNXRef as the argument toinputs
, withotherInputs
append as subsequent arguments.ONNXRef.apply
(ONNXOperators op, List<ONNXRef<?>> otherInputs, List<String> outputs, Map<String, Object> attributes) Convenience method that callsONNXContext.operation(ONNXOperators, List, List, Map)
, using this ONNXRef as the first argument toinputs
, withotherInputs
append as subsequent arguments.ONNXRef.apply
(ONNXOperators op, Map<String, Object> attributes) Convenience method that callsONNXContext.operation(ONNXOperators, List, String, Map)
, using this ONNXRef as the argument toinputs
.ONNXRef.apply
(ONNXOperators op, ONNXRef<?> other) Convenience method that callsONNXContext.operation(ONNXOperators, List, String, Map)
, passing this ONNXRef andother
as a length 2 list toinputs
.ONNXRef.apply
(ONNXOperators op, ONNXRef<?> other, String outputName) Convenience method that callsONNXContext.operation(ONNXOperators, List, String)
, passing this ONNXRef andother
as a length 2 list toinputs
.Convenience method that callsONNXContext.operation(ONNXOperators, List, String, Map)
, passing this ONNXRef andother
as a length 2 list toinputs
.ONNXContext.operation
(ONNXOperators op, List<T> inputs, String outputName) Method for creatingONNXNode
s fromONNXOperators
and inputs.ONNXContext.operation
(ONNXOperators op, List<T> inputs, String outputName, Map<String, Object> attributes) Method for creatingONNXNode
s fromONNXOperators
and inputs.ONNXContext.operation
(ONNXOperators op, List<T> inputs, List<String> outputs, Map<String, Object> attributes) Base method for creatingONNXNode
s fromONNXOperators
and inputs.