Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isPlaceHolder (0.11 sec)

  1. tensorflow/c/c_test_util.cc

    TF_Operation* Split3(TF_Operation* input, TF_Graph* graph, TF_Status* s,
                         const char* name) {
      TF_Operation* op;
      Split3Helper(input, graph, s, name, &op);
      return op;
    }
    
    bool IsPlaceholder(const tensorflow::NodeDef& node_def) {
      if (node_def.op() != "Placeholder" || node_def.name() != "feed") {
        return false;
      }
      bool found_dtype = false;
      bool found_shape = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
Back to top