onnxs v0.1.0 Onnx.NodeProto

NodeProto stores a node that is similar to the notion of “layer” or “operator” in many deep learning frameworks. For example, it can be a node of type “Conv” that takes in an image, a filter tensor and a bias tensor, and produces the convolved output.

Link to this section Summary

Link to this section Types

Link to this type t()
t() :: %Onnx.NodeProto{
  attribute: [Onnx.AttributeProto.t()],
  doc_string: String.t(),
  domain: String.t(),
  input: [String.t()],
  name: String.t(),
  op_type: String.t(),
  output: [String.t()]
}

Link to this section Functions

Link to this function new(attrs \\ %{})