OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SAVERS
(Results
1 - 13
of
13
) sorted by null
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
export.py
50
saver = _get_first_op_from_collection(ops.GraphKeys.
SAVERS
)
58
ops.add_to_collection(ops.GraphKeys.
SAVERS
, saver)
/external/tensorflow/tensorflow/contrib/meta_graph_transform/
meta_graph_transform.py
404
# Primary SaverDef and
SAVERS
collection
409
base_meta_graph_def, _ops.GraphKeys.
SAVERS
))
411
savers
= initializer_names.get(_ops.GraphKeys.
SAVERS
, [])
412
savers
.extend([
416
initializer_names[_ops.GraphKeys.
SAVERS
] =
savers
/external/tensorflow/tensorflow/contrib/learn/python/learn/
graph_actions.py
416
saver = _get_first_op_from_collection(ops.GraphKeys.
SAVERS
)
419
ops.add_to_collection(ops.GraphKeys.
SAVERS
, saver)
graph_actions_test.py
379
ops.add_to_collection(ops.GraphKeys.
SAVERS
, saver_lib.Saver())
/external/tensorflow/tensorflow/python/estimator/
estimator.py
[
all
...]
/external/tensorflow/tensorflow/python/training/
supervisor.py
464
saver = self._get_first_op_from_collection(ops.GraphKeys.
SAVERS
)
467
ops.add_to_collection(ops.GraphKeys.
SAVERS
, saver)
[
all
...]
saver.py
85
"""Base class for
Savers
.
[
all
...]
basic_session_run_hooks.py
489
# Get saver from the
SAVERS
collection if present.
490
collection_key = ops.GraphKeys.
SAVERS
491
savers
= ops.get_collection(collection_key)
492
if not
savers
:
496
elif len(
savers
) > 1:
502
self._saver =
savers
[0]
503
return
savers
[0]
[
all
...]
saver_test.py
[
all
...]
monitored_session_test.py
121
ops.add_to_collection(ops.GraphKeys.
SAVERS
, saver_lib.Saver())
122
ops.add_to_collection(ops.GraphKeys.
SAVERS
, saver_lib.Saver())
[
all
...]
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
estimator.py
[
all
...]
/external/tensorflow/tensorflow/python/framework/
meta_graph.py
291
"""Identifies any nodes in the graph_def related to unused
Savers
.
294
scope, so we need only identify the scopes associated with extraneous
Savers
532
clear_extraneous_savers: Remove any preexisting SaverDefs from the
SAVERS
602
if clear_extraneous_savers and ctype == ops.GraphKeys.
SAVERS
:
[
all
...]
ops.py
[
all
...]
Completed in 3151 milliseconds