Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for input_to_output_weights (0.71 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      const auto input_to_output_weights =
          op.getInputToOutputWeights().getType().cast<ShapedType>();
      const auto recurrent_to_output_weights =
          op.getRecurrentToOutputWeights().getType().cast<ShapedType>();
      if (activation_state.hasStaticShape() && cell_state.hasStaticShape() &&
          input_to_output_weights.hasStaticShape() &&
          recurrent_to_output_weights.hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

          /*input_to_input_weights=*/weights_array->getResult(0),
          /*input_to_forget_weights=*/weights_array->getResult(1),
          /*input_to_cell_weights=*/weights_array->getResult(2),
          /*input_to_output_weights=*/weights_array->getResult(3),
          /*recurrent_to_input_weights=*/recurrent_to_input_weights,
          /*recurrent_to_forget_weights=*/recurrent_to_forget_weights,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %24 : tensor<4xf32>
    
    }
    
    // -----
    
    // 'input_to_output_weights' input for lstm op has unmatched rank with `input`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        // Weights
        TFL_TensorOfOrNone<[F32, QI8]>:$input_to_input_weights,
        TFL_TensorOf<[F32, QI8]>:$input_to_forget_weights,
        TFL_TensorOf<[F32, QI8]>:$input_to_cell_weights,
        TFL_TensorOf<[F32, QI8]>:$input_to_output_weights,
    
        // Recurrent weights
        TFL_TensorOfOrNone<[F32, QI8]>:$recurrent_to_input_weights,
        TFL_TensorOf<[F32, QI8]>:$recurrent_to_forget_weights,
        TFL_TensorOf<[F32, QI8]>:$recurrent_to_cell_weights,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top