Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CropAndResize (0.12 sec)

  1. tensorflow/cc/gradients/image_grad_test.cc

      void MakeOp(const Tensor& x_data, const Input& boxes, const Input& box_ind,
                  const Input& crop_size, Output* x, Output* y) {
        *x = Const<T>(scope_, x_data);
        *y = CropAndResize(scope_, *x, boxes, box_ind, crop_size,
                           CropAndResize::Method("bilinear"));
        TF_ASSERT_OK(scope_.status());
      }
    
      template <typename X_T, typename Y_T, typename JAC_T>
      void TestCropAndResize() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/image_grad.cc

          scope, grad_inputs[0], op.input(0), op.input(1), op.input(2)));
      grad_outputs->push_back(NoGradient());
      grad_outputs->push_back(NoGradient());
      return scope.status();
    }
    
    REGISTER_GRADIENT_OP("CropAndResize", CropAndResizeGradHelper);
    }  // anonymous namespace
    }  // namespace ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 11 00:29:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top