Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FusedBatchNormV3Grad (0.27 sec)

  1. tensorflow/cc/gradients/nn_grad.cc

        } else if (data_format == "NCDHW") {
          (*grad_outputs)[0] =
              Transpose(scope, (*grad_outputs)[0], {0, 4, 1, 2, 3});
        }
        return scope.status();
      }
    }
    
    Status FusedBatchNormV3Grad(const Scope& scope, const Operation& op,
                                const std::vector<Output>& grad_inputs,
                                std::vector<Output>* grad_outputs) {
      return BaseFusedBatchNormGrad(
    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

                                   public ::testing::WithParamInterface<
                                       std::tuple<bool, bool, TensorShape>> {};
    
    TEST_P(FusedBatchNormGradTest, FusedBatchNormV3Grad) {
      FusedBatchNormV3::Attrs attrs;
      attrs.is_training_ = std::get<0>(GetParam());
      bool channel_first = std::get<1>(GetParam());
      TensorShape shape = std::get<2>(GetParam());
    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