Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for instructors (0.16 sec)

  1. tensorflow/c/c_api.h

    //
    // WARNING: This function does not yet support all the gradients that python
    // supports. See
    // https://www.tensorflow.org/code/tensorflow/cc/gradients/README.md
    // for instructions on how to add C++ more gradients.
    TF_CAPI_EXPORT void TF_AddGradients(TF_Graph* g, TF_Output* y, int ny,
                                        TF_Output* x, int nx, TF_Output* dx,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. tensorflow/c/eager/tape.h

        auto it = tensor_tape.find(pair.first);
        if (it != tensor_tape.end() && it->second != -1) {
          result.op_missing_tensor[it->second] += 1;
        }
      }
      if (!persistent_tape) {
        // Call destructors for all unneeded gradient functions and
        // clear the op_tape. We can clear the tape because ownership of
        // backward functions that will be used for gradient computation
        // has been transferred to `result`.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
Back to top