tf.compat.v1.report_uninitialized_variables  |  TensorFlow v2.16.1 (original) (raw)

tf.compat.v1.report_uninitialized_variables

Stay organized with collections Save and categorize content based on your preferences.

Adds ops to list the names of uninitialized variables.

tf.compat.v1.report_uninitialized_variables(
    var_list=None, name='report_uninitialized_variables'
)

When run, it returns a 1-D tensor containing the names of uninitialized variables if there are any, or an empty array if there are none.

Args
var_list List of Variable objects to check. Defaults to the value ofglobal_variables() + local_variables()
name Optional name of the Operation.
Returns
A 1-D tensor containing names of the uninitialized variables, or an empty 1-D tensor if there are no variables or no uninitialized variables.

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 2024-04-26 UTC.