Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_ImportGraphDefOptionsSetUniquifyPrefix (0.3 sec)

  1. tensorflow/c/c_api.h

    // operation name or prefix in the graph. If false, a conflicting prefix will be
    // treated as an error. This option has no effect if no prefix is specified.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetUniquifyPrefix(
        TF_ImportGraphDefOptions* opts, unsigned char uniquify_prefix);
    
    // Set any imported nodes with input `src_name:src_index` to have that input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

                                                  unsigned char uniquify_names) {
      opts->opts.uniquify_names = uniquify_names;
    }
    
    void TF_ImportGraphDefOptionsSetUniquifyPrefix(TF_ImportGraphDefOptions* opts,
                                                   unsigned char uniquify_prefix) {
      opts->opts.uniquify_prefix = uniquify_prefix;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top