LoginSignup
0
1

More than 3 years have passed since last update.

Tensorflow v2使用時にv1の関数を使用する

Last updated at Posted at 2020-06-27

.compat.v1.を付け加える

>>> tf.get_variable_scope()
AttributeError: module 'tensorflow' has no attribute 'variable_scope'
>>> tf.compat.v1.get_variable_scope()
<tensorflow.python.ops.variable_scope.VariableScope at 0x7f41e7efb198>
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1