HomeSort by relevance Sort by last modified time
    Searched refs:MetaGraphDef (Results 1 - 25 of 41) sorted by null

1 2

  /external/tensorflow/tensorflow/contrib/session_bundle/
signature.h 38 // Get Signatures from a MetaGraphDef.
39 Status GetSignatures(const tensorflow::MetaGraphDef& meta_graph_def,
42 // (Re)set Signatures in a MetaGraphDef.
44 tensorflow::MetaGraphDef* meta_graph_def);
46 // Gets a ClassificationSignature from a MetaGraphDef's default signature.
50 const tensorflow::MetaGraphDef& meta_graph_def,
53 // Gets a named ClassificationSignature from a MetaGraphDef.
57 const string& name, const tensorflow::MetaGraphDef& meta_graph_def,
60 // Gets a RegressionSignature from a MetaGraphDef's default signature.
63 Status GetRegressionSignature(const tensorflow::MetaGraphDef& meta_graph_def
    [all...]
bundle_shim.h 51 // Converts signatures in the MetaGraphDef into a SignatureDefs in the
52 // MetaGraphDef.
53 Status ConvertSignaturesToSignatureDefs(MetaGraphDef* meta_graph_def);
session_bundle.h 47 MetaGraphDef meta_graph_def;
session_bundle_test.cc 49 // Function used to rewrite a MetaGraphDef.
50 using MetaGraphDefTwiddler = std::function<void(MetaGraphDef*)>;
54 // The Twiddler can be used to update the MetaGraphDef before output.
72 MetaGraphDef graph_def;
271 // MetaGraphDef.
299 const string export_path = SetupExport([](MetaGraphDef*) {});
307 SetupExport([](MetaGraphDef*) {}, "export", kMetaGraphDefFilename);
312 const string path = SetupExport([](MetaGraphDef* def) {
323 const string path = SetupExport([](MetaGraphDef* def) {
339 const string path = SetupExport([](MetaGraphDef* def)
    [all...]
signature.cc 49 Status GetSignatures(const tensorflow::MetaGraphDef& meta_graph_def,
63 tensorflow::MetaGraphDef* meta_graph_def) {
77 const tensorflow::MetaGraphDef& meta_graph_def,
96 const string& name, const tensorflow::MetaGraphDef& meta_graph_def,
152 Status GetRegressionSignature(const tensorflow::MetaGraphDef& meta_graph_def,
201 const tensorflow::MetaGraphDef& meta_graph_def,
219 Status GetDefaultSignature(const tensorflow::MetaGraphDef& meta_graph_def,
228 const tensorflow::MetaGraphDef& meta_graph_def,
bundle_shim_test.cc 72 const MetaGraphDef meta_graph_def = saved_model_bundle.meta_graph_def;
98 // Helper function to validate that the SignatureDef found in the MetaGraphDef
100 void ValidateSignatureDef(const MetaGraphDef& meta_graph_def, const string& key,
144 MetaGraphDef meta_graph_def;
155 MetaGraphDef meta_graph_def;
171 MetaGraphDef meta_graph_def;
199 MetaGraphDef meta_graph_def;
234 MetaGraphDef meta_graph_def;
258 MetaGraphDef meta_graph_def;
312 MetaGraphDef meta_graph_def
    [all...]
signature_test.cc 43 tensorflow::MetaGraphDef meta_graph_def;
61 tensorflow::MetaGraphDef meta_graph_def;
78 tensorflow::MetaGraphDef meta_graph_def;
95 tensorflow::MetaGraphDef meta_graph_def;
114 tensorflow::MetaGraphDef meta_graph_def;
131 tensorflow::MetaGraphDef meta_graph_def;
151 tensorflow::MetaGraphDef meta_graph_def;
168 tensorflow::MetaGraphDef meta_graph_def;
185 tensorflow::MetaGraphDef meta_graph_def;
202 tensorflow::MetaGraphDef meta_graph_def
    [all...]
bundle_shim.cc 82 MetaGraphDef* meta_graph_def) {
163 MetaGraphDef* meta_graph_def) {
199 MetaGraphDef* meta_graph_def) {
303 // MetaGraphDef.
305 const MetaGraphDef& meta_graph_def,
320 Status ConvertSignaturesToSignatureDefs(MetaGraphDef* meta_graph_def) {
session_bundle.py 70 meta_graph_def: optional object of type MetaGraphDef. If this object is
71 present, then it is used instead of parsing MetaGraphDef from export_dir.
88 meta_graph_def = meta_graph_pb2.MetaGraphDef()
133 # Use serving graph_def in MetaGraphDef collection_def if exists
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer.i 20 %typemap(in) const tensorflow::MetaGraphDef& (tensorflow::MetaGraphDef temp) {
31 "The MetaGraphDef could not be parsed as a valid protocol buffer");
46 string GenerateCostReport(const tensorflow::MetaGraphDef& metagraph, bool per_node_report,
66 string GenerateCostReport(const tensorflow::MetaGraphDef& metagraph, bool per_node_report,
model_analyzer.i 19 %typemap(in) const tensorflow::MetaGraphDef& (tensorflow::MetaGraphDef temp) {
30 "The MetaGraphDef could not be parsed as a valid protocol buffer");
43 string GenerateModelReport(const tensorflow::MetaGraphDef& metagraph, bool debug) {
62 string GenerateModelReport(const tensorflow::MetaGraphDef& metagraph, bool debug);
tf_optimizer.i 20 %typemap(in) const tensorflow::MetaGraphDef& (tensorflow::MetaGraphDef temp) {
31 "The MetaGraphDef could not be parsed as a valid protocol buffer");
98 const tensorflow::MetaGraphDef& metagraph,
131 const tensorflow::MetaGraphDef& metagraph, bool verbose,
item.i 17 %typemap(in) const tensorflow::MetaGraphDef& (tensorflow::MetaGraphDef temp) {
28 "The MetaGraphDef could not be parsed as a valid protocol buffer");
74 const tensorflow::MetaGraphDef& meta_graph, bool ignore_colocation,
306 const tensorflow::MetaGraphDef& meta_graph, bool ignore_colocation,
item.py 46 self._item_graph = meta_graph_pb2.MetaGraphDef()
cost_analyzer_tool.py 39 if FLAGS.metagraphdef:
40 with gfile.GFile(FLAGS.metagraphdef) as meta_file:
41 metagraph = meta_graph_pb2.MetaGraphDef()
42 if FLAGS.metagraphdef.endswith(".pbtxt"):
79 "--metagraphdef",
82 help="Input .meta MetaGraphDef file path.")
  /external/tensorflow/tensorflow/core/grappler/
grappler_item_builder.h 27 class MetaGraphDef;
56 // Factory method for creating a GrapplerItem from a MetaGraphDef.
59 const string& id, const MetaGraphDef& meta_graph, const ItemConfig& cfg);
grappler_item_builder_test.cc 79 MetaGraphDef meta_def;
129 MetaGraphDef meta_graph;
188 MetaGraphDef meta_graph;
259 MetaGraphDef meta_graph;
  /external/tensorflow/tensorflow/cc/saved_model/
loader.h 33 MetaGraphDef meta_graph_def;
loader.cc 76 MetaGraphDef* meta_graph_def_to_load) {
77 for (const MetaGraphDef& meta_graph_def : saved_model_proto.meta_graphs()) {
96 Status LoadMetaGraphIntoSession(const MetaGraphDef& meta_graph_def,
125 bool HasMainOp(const MetaGraphDef& meta_graph_def) {
135 const MetaGraphDef& meta_graph_def,
193 const MetaGraphDef& meta_graph_def,
216 Status GetAssetFileDefs(const MetaGraphDef& meta_graph_def,
  /external/tensorflow/tensorflow/contrib/saved_model/cc/saved_model/
signature_def_utils_test.cc 27 MetaGraphDef MakeSampleMetaGraphDef() {
28 MetaGraphDef result;
58 const MetaGraphDef meta_graph_def = MakeSampleMetaGraphDef();
signature_def_utils.h 35 Status FindSignatureDefByKey(const MetaGraphDef& meta_graph_def,
signature_def_utils.cc 38 Status FindSignatureDefByKey(const MetaGraphDef& meta_graph_def,
  /external/tensorflow/tensorflow/core/grappler/inputs/
file_input_yielder.cc 73 MetaGraphDef metagraph;
79 LOG(WARNING) << "Failed to read MetaGraphDef from " << filename << ": "
91 metagraph = MetaGraphDef();
112 metagraph = MetaGraphDef();
125 metagraph = MetaGraphDef();
  /external/tensorflow/tensorflow/contrib/meta_graph_transform/
meta_graph_transform_test.py 15 """Tests for MetaGraphDef Transform Tool."""
66 meta_info_def = meta_graph_pb2.MetaGraphDef.MetaInfoDef()
346 meta_graph_def = meta_graph_pb2.MetaGraphDef()
374 base_meta_graph_def = meta_graph_pb2.MetaGraphDef()
395 # Expected metagraphdef.
396 expected_meta_graph_def = meta_graph_pb2.MetaGraphDef()
452 base_meta_graph_def = meta_graph_pb2.MetaGraphDef()
456 meta_graph_def = meta_graph_pb2.MetaGraphDef()
468 base_meta_graph_def = meta_graph_pb2.MetaGraphDef()
472 meta_graph_def = meta_graph_pb2.MetaGraphDef()
    [all...]
  /external/tensorflow/tensorflow/contrib/saved_model/python/saved_model/
signature_def_utils_test.py 56 meta_graph_def = meta_graph_pb2.MetaGraphDef()
65 "No SignatureDef with key '%s' found in MetaGraphDef" % missing_key):
99 meta_graph_def = meta_graph_pb2.MetaGraphDef()
128 meta_graph_def = meta_graph_pb2.MetaGraphDef()
163 meta_graph_def = meta_graph_pb2.MetaGraphDef()

Completed in 317 milliseconds

1 2