Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for kernel_type (0.11 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

      mlir::TFL::LSTMKernelType kernel_type;
      switch (value) {
        case tflite::LSTMKernelType_FULL:
          kernel_type = mlir::TFL::LSTMKernelType::FULL;
          break;
        case tflite::LSTMKernelType_BASIC:
          kernel_type = mlir::TFL::LSTMKernelType::BASIC;
          break;
      }
      return mlir::TFL::LSTMKernelTypeAttr::get(builder.getContext(), kernel_type);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      cell_clip: float; // Optional, 0.0 means no clipping
      proj_clip: float; // Optional, 0.0 means no clipping
    
      // Parameters for LSTM version 2 or above.
      // Basic kernel is only supported in version 2 or above.
      kernel_type: LSTMKernelType = FULL;
    
      // Parameters for LSTM version 4 or above.
      asymmetric_quantize_inputs: bool;
    }
    
    // An implementation of TensorFlow dynamic_rnn with LSTMCell.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top