Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for theta_inputs (0.18 sec)

  1. tensorflow/c/eager/gradient_checker.cc

        }
    
        // Get f(theta + eps):
        theta_inputs[input_index] = thetaPlus.get();
        TF_RETURN_IF_ERROR(
            RunAndMaybeSum(ctx, forward, theta_inputs, f_outputs, use_function));
        AbstractTensorHandlePtr fPlus(f_outputs[0]);
    
        // Get f(theta - eps):
        theta_inputs[input_index] = thetaMinus.get();
        TF_RETURN_IF_ERROR(
            RunAndMaybeSum(ctx, forward, theta_inputs, f_outputs, use_function));
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 7.3K bytes
    - Viewed (0)
Back to top