Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Conv2DBackpropInputGrad (0.42 sec)

  1. tensorflow/cc/gradients/nn_grad.cc

            grad_outputs->push_back(NoGradient());
            return scope.status();
          },
          grad_outputs);
    }
    
    REGISTER_GRADIENT_OP("FusedBatchNormV3", FusedBatchNormV3Grad);
    
    Status Conv2DBackpropInputGrad(const Scope& scope, const Operation& op,
                                   const std::vector<Output>& grad_inputs,
                                   std::vector<Output>* grad_outputs) {
      if (op.num_inputs() != 3) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/nn_grad_test.cc

                           ::testing::Values(TensorShape({2, 3, 4, 5}),
                                             TensorShape({2, 3, 2, 2, 2}))));
    
    TEST_F(NNGradTest, Conv2DBackpropInputGrad) {
      TensorShape shape({1, 2, 2, 1});
      TensorShape filter_shape({1, 1, 1, 1});
      auto out = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
Back to top