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

1 2 3 4

  /external/tensorflow/tensorflow/python/saved_model/
saved_model.py 24 from tensorflow.python.saved_model import builder
25 from tensorflow.python.saved_model import constants
26 from tensorflow.python.saved_model import loader
27 from tensorflow.python.saved_model import main_op
28 from tensorflow.python.saved_model import signature_constants
29 from tensorflow.python.saved_model import signature_def_utils
30 from tensorflow.python.saved_model import tag_constants
31 from tensorflow.python.saved_model import utils
32 from tensorflow.python.saved_model.load import load
33 from tensorflow.python.saved_model.save import sav
    [all...]
signature_def_utils.py 24 from tensorflow.python.saved_model.signature_def_utils_impl import build_signature_def
25 from tensorflow.python.saved_model.signature_def_utils_impl import classification_signature_def
26 from tensorflow.python.saved_model.signature_def_utils_impl import is_valid_signature
27 from tensorflow.python.saved_model.signature_def_utils_impl import load_op_from_signature_def
28 from tensorflow.python.saved_model.signature_def_utils_impl import op_signature_def
29 from tensorflow.python.saved_model.signature_def_utils_impl import predict_signature_def
30 from tensorflow.python.saved_model.signature_def_utils_impl import regression_signature_def
31 from tensorflow.python.saved_model.signature_def_utils_impl import supervised_eval_signature_def
32 from tensorflow.python.saved_model.signature_def_utils_impl import supervised_train_signature_def
utils.py 24 from tensorflow.python.saved_model.utils_impl import build_tensor_info
25 from tensorflow.python.saved_model.utils_impl import build_tensor_info_from_op
26 from tensorflow.python.saved_model.utils_impl import get_tensor_from_tensor_info
builder.py 27 from tensorflow.python.saved_model.builder_impl import _SavedModelBuilder
28 from tensorflow.python.saved_model.builder_impl import SavedModelBuilder
main_op.py 26 from tensorflow.python.saved_model.main_op_impl import main_op
27 from tensorflow.python.saved_model.main_op_impl import main_op_with_restore
loader.py 36 builder = tf.saved_model.builder.SavedModelBuilder(export_dir)
56 tf.saved_model.loader.load(sess, ["foo-tag"], export_dir)
67 from tensorflow.python.saved_model.loader_impl import load
68 from tensorflow.python.saved_model.loader_impl import maybe_saved_model_directory
simple_save.py 22 from tensorflow.python.saved_model import builder
23 from tensorflow.python.saved_model import signature_constants
24 from tensorflow.python.saved_model import signature_def_utils
25 from tensorflow.python.saved_model import tag_constants
30 @tf_export(v1=['saved_model.simple_save'])
34 'library as tf.compat.v1.saved_model.simple_save.')
57 APIs](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/saved_model/README.md).
63 [SavedModelBuilder](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/saved_model/builder.py).
66 https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/saved_model/README.md.
loader_impl.py 33 from tensorflow.python.saved_model import constants
34 from tensorflow.python.saved_model import signature_def_utils
35 from tensorflow.python.saved_model import utils_impl as saved_model_utils
64 saved_model = saved_model_pb2.SavedModel()
68 saved_model.ParseFromString(file_content)
69 return saved_model
75 text_format.Merge(file_content.decode("utf-8"), saved_model)
76 return saved_model
193 "saved_model.contains_saved_model",
194 "saved_model.maybe_saved_model_directory"
297 def saved_model(self): member in class:SavedModelLoader
    [all...]
simple_save_test.py 27 from tensorflow.python.saved_model import loader
28 from tensorflow.python.saved_model import signature_constants
29 from tensorflow.python.saved_model import simple_save
30 from tensorflow.python.saved_model import tag_constants
  /external/tensorflow/tensorflow/contrib/saved_model/python/
__init__.py 27 from tensorflow.contrib.saved_model.python.saved_model import *
  /external/tensorflow/tensorflow/contrib/saved_model/python/saved_model/
__init__.py 27 from tensorflow.contrib.saved_model.python.saved_model import keras_saved_model
reader.py 27 from tensorflow.python.saved_model import constants
58 saved_model = saved_model_pb2.SavedModel()
62 saved_model.ParseFromString(file_content)
63 return saved_model
69 text_format.Merge(file_content.decode("utf-8"), saved_model)
70 return saved_model
88 saved_model = read_saved_model(saved_model_dir)
90 for meta_graph_def in saved_model.meta_graphs:
reader_test.py 23 from tensorflow.contrib.saved_model.python.saved_model import reader
28 from tensorflow.python.saved_model import builder as saved_model_builder
29 from tensorflow.python.saved_model import tag_constants
  /external/tensorflow/tensorflow/python/saved_model/model_utils/
__init__.py 21 from tensorflow.python.saved_model.model_utils.export_output import *
22 from tensorflow.python.saved_model.model_utils.export_utils import build_all_signature_defs
23 from tensorflow.python.saved_model.model_utils.export_utils import export_outputs_for_mode
24 from tensorflow.python.saved_model.model_utils.export_utils import EXPORT_TAG_MAP
25 from tensorflow.python.saved_model.model_utils.export_utils import get_export_outputs
26 from tensorflow.python.saved_model.model_utils.export_utils import get_temp_export_dir
27 from tensorflow.python.saved_model.model_utils.export_utils import get_timestamped_export_dir
28 from tensorflow.python.saved_model.model_utils.export_utils import SIGNATURE_KEY_MAP
  /external/tensorflow/tensorflow/contrib/saved_model/
__init__.py 27 from tensorflow.contrib.saved_model.python.saved_model.keras_saved_model import *
  /external/tensorflow/tensorflow/python/tools/
saved_model_utils.py 27 from tensorflow.python.saved_model import constants
58 saved_model = saved_model_pb2.SavedModel()
62 saved_model.ParseFromString(file_content)
63 return saved_model
69 text_format.Merge(file_content.decode("utf-8"), saved_model)
70 return saved_model
88 saved_model = read_saved_model(saved_model_dir)
90 for meta_graph_def in saved_model.meta_graphs:
113 saved_model = read_saved_model(saved_model_dir)
115 for meta_graph_def in saved_model.meta_graphs
    [all...]
  /external/tensorflow/tensorflow/python/keras/utils/
mode_keys.py 21 from tensorflow.python.saved_model.model_utils.mode_keys import KerasModeKeys as ModeKeys
  /external/tensorflow/tensorflow/contrib/predictor/
saved_model_predictor.py 25 from tensorflow.contrib.saved_model.python.saved_model import reader
28 from tensorflow.python.saved_model import loader
29 from tensorflow.python.saved_model import signature_constants
53 saved_model = reader.read_saved_model(saved_model_dir)
55 for meta_graph_def in saved_model.meta_graphs:
  /external/tensorflow/tensorflow/lite/python/
convert_saved_model_test.py 35 from tensorflow.python.saved_model import saved_model
36 from tensorflow.python.saved_model import signature_constants
37 from tensorflow.python.saved_model import tag_constants
128 saved_model.simple_save(sess, saved_model_dir, inputs, outputs)
142 saved_model.simple_save(sess, saved_model_dir, inputs, outputs)
293 builder = saved_model.builder.SavedModelBuilder(saved_model_dir)
298 sig_input_tensor = saved_model.utils.build_tensor_info(in_tensor)
300 sig_output_tensor = saved_model.utils.build_tensor_info(out_tensor)
303 saved_model.signature_def_utils.build_signature_def
    [all...]
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer_tool.py 45 saved_model = saved_model_pb2.SavedModel()
46 text_format.Merge(input_data, saved_model)
47 meta_graph = saved_model.meta_graphs[0]
50 saved_model.ParseFromString(input_data)
51 meta_graph = saved_model.meta_graphs[0]
  /external/tensorflow/tensorflow/examples/saved_model/integration_tests/
use_mnist_cnn.py 33 from tensorflow.examples.saved_model.integration_tests import mnist_util
34 from tensorflow.examples.saved_model.integration_tests import util
88 obj = tf.saved_model.load(FLAGS.export_dir)
use_rnn_cell.py 33 cell = tf.saved_model.load(FLAGS.model_dir)
use_text_rnn_model.py 37 model = tf.saved_model.load(FLAGS.model_dir)
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
feature_keys.py 21 from tensorflow.python.saved_model import signature_constants
  /external/tensorflow/tensorflow/python/keras/saving/
__init__.py 31 from tensorflow.python.keras.saving.saved_model import export_saved_model
32 from tensorflow.python.keras.saving.saved_model import load_from_saved_model

Completed in 346 milliseconds

1 2 3 4