Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for non_max_suppression_padded_v2 (0.2 sec)

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

               << "Invalid number of arguments to "
                  "non_max_suppression_padded_v2 (need at least 5): "
               << func_.getNumArguments();
      }
      if (func_.getFunctionType().getNumResults() != 2) {
        return func_.emitWarning() << "Invalid number of results from "
                                      "non_max_suppression_padded_v2 (need 2): "
                                   << func_.getFunctionType().getNumResults();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    module {
    // expected-warning @+1 {{Invalid number of results from non_max_suppression_padded_v2}}
    func.func private @nms_padded_invalid_num_results(%arg0: tensor<100x4xf32>, %arg1: tensor<100xf32>, %arg2: tensor<i32>, %arg3: tensor<f32>, %arg4: tensor<f32>, %arg5: tensor<i1>, %arg6: tensor<i1>, %arg7: tensor<i1>, %arg8: tensor<i32>) -> () attributes  {tf._implements = "non_max_suppression_padded_v2", tf._reference = "mlir"}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

    constexpr char kTFAPIImplements[] = "tf.api_implements";
    constexpr char kTFTextAPIPrefix[] = "tftext:";
    constexpr char kCustomSSDPostprocessing[] = "TFLite_Detection_PostProcess";
    constexpr char kTfNMSPadded[] = "non_max_suppression_padded_v2";
    constexpr char kCustomMaxUnpooling[] = "addons:MaxUnpooling2D";
    constexpr char kCustomDenseImageWarp[] = "addons:DenseImageWarp";
    constexpr char kTFLFusableOp[] = "tfl_fusable_op";
    
    using mlir::TF::FuncAttr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top