Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for meta_graphs (0.32 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/saved_model.pbtxt

    # CHECK-SAME: shared_name = "batch"
    # CH#CK: sym_name = "predict0"
    
    # CHECK: f = @inference_func[[post_fix]],
    # CHECK-SAME: shared_name = "batch"
    # CH#CK: sym_name = "predict1"
    
    meta_graphs: {
      meta_info_def: {
        tags: ["serve", "tpu"]
      }
      graph_def: {
        node: {
          name: "input0"
          op: "Placeholder"
          attr: {
            key: "dtype"
            value: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 09 16:20:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/util.cc

    #include <utility>
    #include <vector>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow {
    namespace saved_model {
    
    std::string GetWriteVersion(const SavedModel& saved_model) {
      if (saved_model.meta_graphs_size() == 1 &&
          saved_model.meta_graphs()[0].has_object_graph_def()) {
        return "2";
      }
      return "1";
    }
    
    std::set<std::string> GetMapKeys(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/fingerprinting_utils.cc

            field_checksum = FingerprintCat64(field_checksum, hash);
          }
        }
      }
      return field_checksum;
    }
    
    inline RepeatedPtrField<FieldIndex> GraphDefFieldTags() {
      // SavedModel.meta_graphs[0].graph_def
      FieldIndex meta_graph_field_tag;
      meta_graph_field_tag.set_field(2);
      FieldIndex meta_graph_index_field_tag;
      meta_graph_index_field_tag.set_index(0);
      FieldIndex graph_def_field_tag;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libexport/load.cc

      }
    
      // Build a map of node names to their corresponding nodes.
      //
      // See `GetGraphDefNode` for more details.
      const auto& nodes =
          tf_package.saved_model_proto_.meta_graphs(0).graph_def().node();
      for (const auto& node : nodes) {
        tf_package.graph_def_nodes_by_name_[node.name()] = &node;
      }
      return tf_package;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 15:16:07 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

      saved_model_proto = saved_model_loader.parse_saved_model(saved_model_path)
      for meta_graph in saved_model_proto.meta_graphs:
        if any(
            node.op.startswith('FakeQuant') for node in meta_graph.graph_def.node
        ):
          return True
        for function in meta_graph.graph_def.library.function:
          if any(node.op.startswith('FakeQuant') for node in function.node_def):
            return True
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/loader.h

    };
    
    // Restore variable and resources in the SavedModel export dir for the
    // indicated metagraph.
    // The recommended way to load a saved model is to call LoadSavedModel,
    // which provides an already initialized Metagraph, Session, and DebugInfo.
    Status RestoreSession(const RunOptions& run_options,
                          const MetaGraphDef& meta_graph, const string& export_dir,
                          std::unique_ptr<Session>* session);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/fingerprinting.cc

      // Create a copy of `metagraph` which will be used and mutated for fingerprint
      // computation.
      FingerprintDef fingerprint_def;
      MetaGraphDef* metagraph = saved_model.mutable_meta_graphs(0);
      // Set fingerprint field #1.
      fingerprint_def.set_saved_model_checksum(HashSavedModel(saved_model));
      // Set fingerprint field #2.
      graph_regularization::SimpleDelete(*metagraph->mutable_graph_def());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/saved_model_utils.h

    Status ValidateSingleConcreteFunction(const SavedFunction& saved_function);
    
    // Walks through the SavedObjectGraph in metagraph, and restores all nodes
    // (except "UserDefinedObjects") with their corresponding type in
    // "PartiallyRevivedObjects".
    Status PartiallyReviveSavedModelObjects(const MetaGraphDef& metagraph,
                                            ImmediateExecutionContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 13 04:18:52 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/loader.cc

                                    const MetaGraphDef& meta_graph,
                                    std::unique_ptr<Session>* session) {
      Session* session_p = nullptr;
      TF_RETURN_IF_ERROR(NewSession(session_options, &session_p));
      session->reset(session_p);
      TF_RETURN_IF_ERROR(ValidateSavedTensors(meta_graph.graph_def()));
      return (*session)->Create(meta_graph.graph_def());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

                       const std::unordered_set<std::string>& tags) {
      tensorflow::MetaGraphDef meta_graph;
      TF_RETURN_IF_ERROR(tensorflow::ReadMetaGraphDefFromSavedModel(
          saved_model_path, tags, &meta_graph));
    
      absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases(
          meta_graph.meta_info_def().function_aliases().begin(),
          meta_graph.meta_info_def().function_aliases().end());
      return function_aliases;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top