Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for learner (0.2 sec)

  1. tensorflow/c/eager/c_api_experimental.h

                                                        TF_Status* status);
    
    // Set configuration key and value using coordination service.
    // If coordination service is enabled, the key-value will be stored on the
    // leader and become accessible to all workers in the cluster.
    // Currently, a config key can only be set with one value, and subsequently
    // setting the same key will lead to errors.
    //
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/cleanup.h

    // need more sophisticated syntax than that.
    //
    // Example:
    //   void func() {
    //     FILE* fp = fopen("data.txt", "r");
    //     if (fp == nullptr) return;
    //     auto fp_cleaner = gtl::MakeCleanup([fp] { fclose(fp); });
    //     // No matter what, fclose(fp) will happen.
    //     DataObject d;
    //     while (ReadDataObject(fp, &d)) {
    //       if (d.IsBad()) {
    //         LOG(ERROR) << "Bad Data";
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 09 11:16:00 GMT 2020
    - 3.4K bytes
    - Viewed (0)
Back to top