Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for forget_layer_norm_coefficients (0.53 sec)

  1. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

          /*projection_bias=*/none,
          /*input_activation_state=*/output_init_state,
          /*input_cell_state=*/hidden_init_state,
          /*input_layer_norm_coefficients=*/none,
          /*forget_layer_norm_coefficients=*/none,
          /*cell_layer_norm_coefficients=*/none,
          /*output_layer_norm_coefficients=*/none,
          /*fused_activation_function*/ builder->getStringAttr("TANH"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if (is_layer_norm_lstm) {
          const auto forget_layer_norm_coefficients =
              op.getForgetLayerNormCoefficients().getType().cast<ShapedType>();
          // If this lstm has layer normalization, this input value,
          // "forget_layer_norm_coefficients" should be a 1D tensor.
          if (!forget_layer_norm_coefficients.hasRank() ||
              forget_layer_norm_coefficients.getRank() != 1 ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_StatefulTensor:$input_cell_state,
    
        // Layer norm coefficients
        TFL_TensorOfOrNone<[F32, QI16]>:$input_layer_norm_coefficients,
        TFL_TensorOfOrNone<[F32, QI16]>:$forget_layer_norm_coefficients,
        TFL_TensorOfOrNone<[F32, QI16]>:$cell_layer_norm_coefficients,
        TFL_TensorOfOrNone<[F32, QI16]>:$output_layer_norm_coefficients,
    
        // Attributes
        TFL_AFAttr:$fused_activation_function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

      Value proj_bias_;
    
      // state
      Value input_activation_state_;
      Value input_cell_state_;
    
      // layer norm coefficients
      Value input_layer_norm_coefficients_;
      Value forget_layer_norm_coefficients_;
      Value cell_layer_norm_coefficients_;
      Value output_layer_norm_coefficients_;
    
      mlir::TFL::LSTMOp lstm_;
    
      Value none_;
      SmallVector<int64_t, 1> bias_slice_shape_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top