Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InitJacobians (0.26 sec)

  1. tensorflow/cc/framework/gradient_checker.cc

      std::vector<Tensor> jacobian_ts;
      InitJacobians<X_T, Y_T, JAC_T>(xs, x_shapes, y_shapes, &jacobian_ts);
    
      // Compute theoretical Jacobian.
      TF_RETURN_IF_ERROR((ComputeTheoreticalJacobianTranspose<X_T, Y_T, JAC_T>(
          scope, xs, x_shapes, *x_datas, ys, y_shapes, &jacobian_ts)));
    
      // Initialize numeric Jacobian to zeros.
      std::vector<Tensor> jacobian_ns;
      InitJacobians<X_T, Y_T, JAC_T>(xs, x_shapes, y_shapes, &jacobian_ns);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top