Home
last modified time | relevance | path

Searched refs:export_path (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/contrib/session_bundle/
Dsession_bundle_test.cc56 Status CopyExport(const string& export_path, const string& variables_filename, in CopyExport() argument
59 TF_RETURN_IF_ERROR(Env::Default()->CreateDir(export_path)); in CopyExport()
63 const string sink = io::JoinPath(export_path, variables_filename); in CopyExport()
71 const string sink = io::JoinPath(export_path, meta_graph_def_filename); in CopyExport()
139 void CheckSessionBundle(const string& export_path, in CheckSessionBundle() argument
141 const string asset_path = io::JoinPath(export_path, kAssetsDirectory); in CheckSessionBundle()
164 void BasicTest(const string& export_path) { in BasicTest() argument
167 TF_ASSERT_OK(LoadSessionBundleFromPath(options, export_path, &bundle)); in BasicTest()
168 CheckSessionBundle(export_path, bundle); in BasicTest()
178 const string export_path = test_util::TestSrcDirPath(kExportPath); in TEST() local
[all …]
Dexporter_test.py54 export_path, argument
123 export_path,
139 os.path.join(export_path, constants.VERSION_FORMAT_SPECIFIER %
181 assets_path = os.path.join(export_path,
189 ignored_asset_path = os.path.join(export_path,
198 os.path.join(export_path,
204 os.path.join(export_path,
213 export_path = os.path.join(test.get_temp_dir(), "export_duplicates")
214 self.doBasicsOneExportPath(export_path)
215 self.assertRaises(RuntimeError, self.doBasicsOneExportPath, export_path)
[all …]
DREADME.md104 export.export(export_path, global_step_tensor, sess)
118 export_path,
171 export.export(export_path, global_step_tensor, sess)
231 export.export(export_path, global_step_tensor, sess)
249 export.export(export_path, global_step_tensor, sess)
/external/tensorflow/tensorflow/contrib/learn/python/learn/
Dexport_strategy_test.py29 def _export_fn(estimator, export_path): argument
30 self.assertTupleEqual((estimator, export_path), (None, None))
39 def _ckpt_export_fn(estimator, export_path, checkpoint_path): argument
40 self.assertTupleEqual((estimator, export_path), (None, None))
50 def _ckpt_eval_export_fn(estimator, export_path, checkpoint_path, argument
52 self.assertTupleEqual((estimator, export_path), (None, None))
63 def _eval_export_fn(estimator, export_path, eval_result): argument
64 del estimator, export_path, eval_result
75 def _strip_default_attrs_export_fn(estimator, export_path, argument
77 self.assertTupleEqual((estimator, export_path), (None, None))
Dexport_strategy.py77 export_path, argument
110 return self.export_fn(estimator, export_path, **kwargs)
/external/tensorflow/tensorflow/contrib/session_bundle/example/
Dexport_half_plus_two.py122 def CopyAssets(filepaths, export_path): argument
123 print("copying asset files to: %s" % export_path)
/external/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/
Ddnn_tree_combined_estimator_test.py240 export_path = os.path.join(model_dir, "export")
243 export_path=export_path,
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.estimator.-exporter.pbtxt14 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
Dtensorflow.estimator.-final-exporter.pbtxt16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
Dtensorflow.estimator.-latest-exporter.pbtxt16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
Dtensorflow.estimator.-best-exporter.pbtxt16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.estimator.-exporter.pbtxt14 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
Dtensorflow.estimator.-final-exporter.pbtxt16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
Dtensorflow.estimator.-latest-exporter.pbtxt16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
Dtensorflow.estimator.-best-exporter.pbtxt16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
/external/tensorflow/tensorflow/examples/tf2_showcase/
Dmnist.py238 export_path = os.path.join(flags_obj.model_dir, 'export')
239 model = tf.saved_model.restore(export_path)