HomeSort by relevance Sort by last modified time
    Searched refs:export_path (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/contrib/learn/python/learn/
export_strategy_test.py 29 def _export_fn(estimator, export_path):
30 self.assertTupleEqual((estimator, export_path), (None, None))
39 def _ckpt_export_fn(estimator, export_path, checkpoint_path):
40 self.assertTupleEqual((estimator, export_path), (None, None))
50 def _ckpt_eval_export_fn(estimator, export_path, checkpoint_path,
52 self.assertTupleEqual((estimator, export_path), (None, None))
63 def _eval_export_fn(estimator, export_path, eval_result):
64 del estimator, export_path, eval_result
75 def _strip_default_attrs_export_fn(estimator, export_path,
77 self.assertTupleEqual((estimator, export_path), (None, None)
    [all...]
export_strategy.py 49 * `(estimator, export_path) -> export_path`
50 * `(estimator, export_path, checkpoint_path) -> export_path`
51 * `(estimator, export_path, checkpoint_path, eval_result) -> export_path`
52 * `(estimator, export_path, checkpoint_path, eval_result,
53 strip_default_attrs) -> export_path`
65 export_path,
72 export_path: A string containing a directory where to write the export
    [all...]
  /external/tensorflow/tensorflow/contrib/session_bundle/
session_bundle_test.cc 52 // Copy the base half_plus_two to `export_path`.
55 Status CopyExport(const string& export_path, const string& variables_filename,
58 TF_RETURN_IF_ERROR(Env::Default()->CreateDir(export_path));
62 const string sink = io::JoinPath(export_path, variables_filename);
70 const string sink = io::JoinPath(export_path, meta_graph_def_filename);
138 void CheckSessionBundle(const string& export_path,
140 const string asset_path = io::JoinPath(export_path, kAssetsDirectory);
163 void BasicTest(const string& export_path) {
166 TF_ASSERT_OK(LoadSessionBundleFromPath(options, export_path, &bundle));
167 CheckSessionBundle(export_path, bundle)
177 const string export_path = test_util::TestSrcDirPath(kExportPath); local
184 const string export_path = test_util::TestSrcDirPath(kExportPath); local
189 const string export_path = test_util::TestSrcDirPath(kExportPath); local
205 const string export_path = test_util::TestSrcDirPath(kExportPath); local
224 const string export_path = test_util::TestSrcDirPath(kExportPath); local
248 const string export_path = test_util::TestSrcDirPath("\/tmp\/bigfoot"); local
259 const string export_path = test_util::TestSrcDirPath(kExportCheckpointV2Path); local
264 const string export_path = test_util::TestSrcDirPath(kExportCheckpointV2Path); local
285 const string export_path = io::JoinPath( local
299 const string export_path = SetupExport([](MetaGraphDef*) {}); local
306 const string export_path = local
404 const string export_path = SetupExport([](MetaGraphDef*) {}); local
    [all...]
exporter_test.py 54 export_path,
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...]
  /external/tensorflow/tensorflow/python/estimator/
exporter.py 45 def export(self, estimator, export_path, checkpoint_path, eval_result,
51 export_path: A string containing a directory where to write the export.
113 def export(self, estimator, export_path, checkpoint_path, eval_result,
118 export_path,
168 def export(self, estimator, export_path, checkpoint_path, eval_result,
175 return self._saved_model_exporter.export(estimator, export_path,
228 def export(self, estimator, export_path, checkpoint_path, eval_result,
231 estimator, export_path, checkpoint_path, eval_result,
234 self._garbage_collect_exports(export_path)
training_test.py     [all...]
training.py     [all...]
  /external/tensorflow/tensorflow/contrib/session_bundle/example/
export_half_plus_two.py 122 def CopyAssets(filepaths, export_path):
123 print("copying asset files to: %s" % export_path)

Completed in 366 milliseconds