Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Reed (0.16 sec)

  1. tensorflow/c/c_test_util.cc

      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;
      for (const auto& attr : node_def.attr()) {
        if (attr.first == "dtype") {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:52 GMT 2021
    - 17.8K bytes
    - Viewed (2)
Back to top