Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RepeatedPtrField (0.25 sec)

  1. tensorflow/cc/saved_model/fingerprinting_utils.h

    using ::tensorflow::protobuf::Message;
    using ::tensorflow::protobuf::RepeatedPtrField;
    
    // Number of sequential FieldIndex matches of `a` in `b`. (Length of initial
    // subsequence.)
    // Example: `a = {4, 2}`, `b = {4, 2, 1, 3}`, `fieldTagMatches(a, b) == 2`
    absl::StatusOr<int> fieldTagMatches(
        const RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>& a,
        const RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>& b);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/runtime/runtime.cc

    using tensorflow::SavedObjectGraph;
    using tensorflow::Status;
    using tensorflow::StructuredValue;
    using tensorflow::TensorSpecProto;
    using tensorflow::libexport::TFPackage;
    using tensorflow::protobuf::RepeatedPtrField;
    using tensorflow::tracing::graph::GraphFunction;
    
    TaggedValue MakeCallable(const std::string& fn_name, Function fn,
                             AbstractContext* ctx) {
      auto CallFn = [fn_name, fn, ctx](TaggedValue args_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libexport/load.cc

    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/util/tensor_bundle/tensor_bundle.h"
    
    namespace tensorflow {
    namespace libexport {
    
    using protobuf::RepeatedPtrField;
    
    tensorflow::StatusOr<TFPackage> TFPackage::Load(const std::string& path) {
      // Load the proto
      TFPackage tf_package;
      const string saved_model_pb_path = io::JoinPath(path, kSavedModelFilenamePb);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 15:16:07 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libexport/load.h

      // in constant time.
      tensorflow::StatusOr<const tensorflow::NodeDef*> GetGraphDefNode(
          std::string name);
    
      // Returns a list of function defs in the SavedModel.
      const protobuf::RepeatedPtrField<FunctionDef>& GetFunctionDefs();
    
      // Returns a BundleReader for reading variable values.
      //
      // This TFPackage retains ownership of the underlying reader.
      tensorflow::BundleReader* GetVariableReader() {
    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