tf.compat.v1.GraphDef
Stay organized with collections
Save and categorize content based on your preferences.
A protobuf containing the graph of operations.
Caution: This API was designed for TensorFlow v1.
Continue reading for details on how to migrate from this API to a native
TensorFlow v2 equivalent. See the
TensorFlow v1 to TensorFlow v2 migration guide
for instructions on how to migrate the rest of your code.
This API is not available in TensorFlow 2.x.
You should not need to use GraphDef
s directly in TF2. To load GraphDef
s in
TF2, use SavedModel. The SavedModel contains the GraphDef
.
Before:
with tf . io . gfile . GFile ( '/tmp/graph.pb' , 'rb' ) as f :
graph_def = tf . compat . v1 . GraphDef ()
graph_def . ParseFromString ( f . read ())
After:
tf . saved_model . load ( '/tmp/saved_model' )
If you would like to create a GraphDef
in TF2, use tf.function
and
get_concrete_function
.
@tf . function
def f ( x ):
return x
graph_def = f . get_concrete_function ( 1. ) . graph . as_graph_def ()
print ( graph_def )
Description
Attributes
library
FunctionDefLibrary library
node
repeated NodeDef node
version
int32 version
versions
VersionDef versions
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license .
Last updated 2022-11-04 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-11-04 UTC."],[],[]]