Class Node<T extends Tensor<T>,F extends Function<T>>

java.lang.Object
deepboof.graph.Node<T,F>

public class Node<T extends Tensor<T>,F extends Function<T>> extends Object
Node in a network graph which describes the network's processing sequence. If there are multiple sources a TensorMerger must be provided. A function can only process one input.
  • Field Details

    • sources

      public List<InputAddress> sources
      Specifies locations of inputs to this function
    • name

      public String name
      Unique identifier for this function
    • combine

      public TensorMerger<T extends Tensor<T>> combine
      Operation for combining multiple input sources together
    • function

      public F extends Function<T> function
      Function for this node
  • Constructor Details

    • Node

      public Node()