Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for graph_def_nodes_by_name_ (0.14 sec)

  1. tensorflow/cc/experimental/libexport/load.cc

    }
    
    tensorflow::StatusOr<const tensorflow::NodeDef*> TFPackage::GetGraphDefNode(
        std::string name) {
      const auto& iter = graph_def_nodes_by_name_.find(name);
      if (iter == graph_def_nodes_by_name_.end()) {
        return tensorflow::Status(absl::StatusCode::kInternal,
                                  absl::StrCat("Failed to find node named ", name));
      }
      return iter->second;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 15:16:07 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libexport/load.h

      std::unique_ptr<tensorflow::BundleReader> variable_reader_;
      std::string variables_filepath_;
      bool has_checkpoint_;
      absl::flat_hash_map<std::string, const NodeDef*> graph_def_nodes_by_name_;
    };
    
    }  // namespace libexport
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top