码迷,mamicode.com
首页 > 其他好文 > 详细

<深度学习>Tensorflow遇到的坑之一

时间:2019-12-19 13:16:57      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:port   ice   ant   time   code   new   plt   otl   一个   

AttributeError: module ‘tensorflow‘ has no attribute ‘random_normal‘

AttributeError: module ‘tensorflow‘ has no attribute ‘Session‘

 

查了很多,发现是tensorflow2.0不支持session了,之前试了

sess = tf.compat.v1.Session()

这句无效。

with tf.compat.v1.Session() as ses:

  # Build a graph.
  a = tf.constant(5.0)
  b = tf.constant(6.0)
  c = a * b

  # Evaluate the tensor `c`.
  print(ses.run(c))

 

这种写法可以解决,但是不兼容,我换个代码就不行了。。

 

然后在博客的回复里看到一个,可以解决这个问题:

import os
import tensorflow as tf
import matplotlib.pyplot as plt
import tensorflow.compat.v1 as tf
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"

tf.disable_v2_behavior()
a = tf.random_([2, 30])
sess = tf.Session()
out = sess.run(a)
x, y = out
plt.scatter(x, y)
plt.show()



导入的时候直接导入tensorflow1的包

<深度学习>Tensorflow遇到的坑之一

标签:port   ice   ant   time   code   new   plt   otl   一个   

原文地址:https://www.cnblogs.com/painKiller/p/12066631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!