Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for argc (0.19 sec)

  1. tensorflow/c/c_test.c

      TF_Tensor* input;
      TF_Status* s = TF_NewStatus();
      TF_GetInput(ctx, 0, &input, s);
      TF_DeleteTensor(input);
      TF_DeleteStatus(s);
    }
    
    // Exercises tensorflow's C API.
    int main(int argc, char** argv) {
      TF_InitMain(argv[0], &argc, &argv);
    
      struct TF_StringStream* s = TF_GetLocalTempDirectories();
      const char* path;
    
      if (!TF_StringStreamNext(s, &path)) {
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  2. RELEASE.md

        *   Adding center bias option for boosted trees.
    *   Add `synchronization` and `aggregation` args to get_variable(). These args
        will be used for distributed variables.
    *   Add `synchronization` and `aggregation` args to the layer `add_weight()`
        API. These args will be used for distributed variables.
    *   `tf.losses.*` do not add to the global collection when executing eagerly (to
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top