Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for LSTMOptions (0.14 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/basic_lstm.mlir

    // CHECK-NEXT:    outputs: [ 5 ],
    // CHECK-NEXT:    operators: [ {
    // CHECK-NEXT:      inputs: [ 0, 1, 2, 3, 4 ],
    // CHECK-NEXT:      outputs: [ 5, 6, 7, 8 ],
    // CHECK-NEXT:      builtin_options_type: LSTMOptions,
    // CHECK-NEXT:      builtin_options: {
    // CHECK-NEXT:        fused_activation_function: RELU,
    // CHECK-NEXT:        cell_clip: 1.0,
    // CHECK-NEXT:        proj_clip: 2.0,
    // CHECK-NEXT:        kernel_type: BASIC
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/converter_gen.cc

        StringRef op_name = def->getName().drop_front(4);  // Strip 'TFL_' prefix
        std::string option_name = GetOperatorOptionName(*def);
        std::string tflite_option_name =
            option_name == "BasicLSTMOptions" ? "LSTMOptions" : option_name;
    
        os << "flatbuffers::Offset<tflite::" << tflite_option_name << "> Create"
           << option_name << "(mlir::TFL::" << op_name
           << " op, flatbuffers::FlatBufferBuilder *fbb) {\n";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      Pool2DOptions,
      SVDFOptions,
      RNNOptions,
      FullyConnectedOptions,
      SoftmaxOptions,
      ConcatenationOptions,
      AddOptions,
      L2NormOptions,
      LocalResponseNormalizationOptions,
      LSTMOptions,
      ResizeBilinearOptions,
      CallOptions,
      ReshapeOptions,
      SkipGramOptions,
      SpaceToDepthOptions,
      EmbeddingLookupSparseOptions,
      MulOptions,
      PadOptions,
      GatherOptions,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm.mlir

    // CHECK-NEXT:       inputs: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 22, 23, 18, 19, 20, 21 ],
    // CHECK-NEXT:       outputs: [ 24 ],
    // CHECK-NEXT:       builtin_options_type: LSTMOptions,
    // CHECK-NEXT:       builtin_options: {
    // CHECK-EMPTY:
    // CHECK-NEXT:       },
    // CHECK-NEXT:       intermediates: [ ]
    // CHECK-NEXT:     } ],
    // CHECK-NEXT:     name: "main"
    // CHECK-NEXT:   } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm_asym_attr.mlir

    // CHECK-NEXT:       inputs: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 22, 23, 18, 19, 20, 21 ],
    // CHECK-NEXT:       outputs: [ 24 ],
    // CHECK-NEXT:       builtin_options_type: LSTMOptions,
    // CHECK-NEXT:       builtin_options: {
    // CHECK-NEXT:         asymmetric_quantize_inputs: true
    // CHECK-NEXT:       },
    // CHECK-NEXT:       intermediates: [ ]
    // CHECK-NEXT:     } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      Pool2DOptions,
      SVDFOptions,
      RNNOptions,
      FullyConnectedOptions,
      SoftmaxOptions,
      ConcatenationOptions,
      AddOptions,
      L2NormOptions,
      LocalResponseNormalizationOptions,
      LSTMOptions,
      ResizeBilinearOptions,
      CallOptions,
      ReshapeOptions,
      SkipGramOptions,
      SpaceToDepthOptions,
      EmbeddingLookupSparseOptions,
      MulOptions,
      PadOptions,
      GatherOptions,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm_quantized.mlir

    // CHECK-NEXT:       inputs: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, -1, -1, -1, 9, 10, 11, 12, 13, 14, 19, 20, 15, 16, 17, 18 ],
    // CHECK-NEXT:       outputs: [ 26 ],
    // CHECK-NEXT:       builtin_options_type: LSTMOptions,
    // CHECK-NEXT:       builtin_options: {
    // CHECK-NEXT:         fused_activation_function: TANH,
    // CHECK-NEXT:         cell_clip: 10.0,
    // CHECK-NEXT:         proj_clip: 0.01
    // CHECK-NEXT:       },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema.fbs

      Pool2DOptions,
      SVDFOptions,
      RNNOptions,
      FullyConnectedOptions,
      SoftmaxOptions,
      ConcatenationOptions,
      AddOptions,
      L2NormOptions,
      LocalResponseNormalizationOptions,
      LSTMOptions,
      ResizeBilinearOptions,
      CallOptions,
      ReshapeOptions,
      SkipGramOptions,
      SpaceToDepthOptions,
      EmbeddingLookupSparseOptions,
      MulOptions,
      PadOptions,
      GatherOptions,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        fbb_.AddElement<int8_t>(LSTMOptions::VT_FUSED_ACTIVATION_FUNCTION, static_cast<int8_t>(fused_activation_function), 0);
      }
      void add_cell_clip(float cell_clip) {
        fbb_.AddElement<float>(LSTMOptions::VT_CELL_CLIP, cell_clip, 0.0f);
      }
      void add_proj_clip(float proj_clip) {
        fbb_.AddElement<float>(LSTMOptions::VT_PROJ_CLIP, proj_clip, 0.0f);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top