Class Choose

    • Constructor Detail

      • Choose

        public Choose​(INDArray[] inputs,
                      Condition condition)
        Parameters:
        inputs -
        condition -
      • Choose

        public Choose​(INDArray[] inputs,
                      List<Integer> iArgs,
                      List<Double> tArgs,
                      Condition condition)
        Note that iArgs (integer arguments) and tArgs(double/float arguments) may end up being used under the following conditions: scalar operations (if a scalar is specified the you do not need to specify an ndarray) otherwise, if an ndarray is needed as a second input then put it in the inputs Usually, you only need 1 input (the equivalent of the array you're trying to do indexing on)
        Parameters:
        inputs - the inputs in to the op
        iArgs - the integer arguments as needed
        tArgs - the arguments
        condition - the condition to filter on
      • Choose

        public Choose()