Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NonMaxSuppressionV5 (0.32 sec)

  1. tensorflow/cc/gradients/image_grad.cc

    REGISTER_NO_GRADIENT_OP("NonMaxSuppression");
    REGISTER_NO_GRADIENT_OP("NonMaxSuppressionV2");
    REGISTER_NO_GRADIENT_OP("NonMaxSuppressionV3");
    REGISTER_NO_GRADIENT_OP("NonMaxSuppressionV4");
    REGISTER_NO_GRADIENT_OP("NonMaxSuppressionV5");
    
    Status ResizeNearestNeighborGradHelper(const Scope& scope, const Operation& op,
                                           const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 11 00:29:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @non_max_suppression_v5(%arg0: tensor<3x4xf32>, %arg1: tensor<3xf32>, %arg2: tensor<i32>, %arg3: tensor<f32>, %arg4: tensor<f32>, %arg5: tensor<f32>) -> tensor<2xi32> {
      %0:3 = "tf.NonMaxSuppressionV5"(%arg0, %arg1, %arg2, %arg3, %arg4, %arg5) {pad_to_max_output_size = true}: (tensor<3x4xf32>, tensor<3xf32>, tensor<i32>, tensor<f32>, tensor<f32>, tensor<f32>) -> (tensor<2xi32>, tensor<2xf32>, tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let hasOptions = 0;
    }
    
    // These ops are named NonMaxSuppressionV4 & NonMaxSuppressionV5 to be
    // consistent with TensorFlow's naming. They are NOT 'versions' of NMS in the
    // sense that one is an incremental change over the other.
    // In reality NonMaxSuppressionV5 implements Soft Non Max Suppression and
    // NonMaxSuppressionV4 performs hard NMS.
    
    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/tensorflow/ir/tf_generated_ops.td

      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
      TF_DerivedOperandTypeAttr T_threshold = TF_DerivedOperandTypeAttr<3>;
    }
    
    def TF_NonMaxSuppressionV5Op : TF_Op<"NonMaxSuppressionV5", [Pure]> {
      let summary = [{
    Greedily selects a subset of bounding boxes in descending order of score,
      }];
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top