1、使用TensorFlow绘制散点图(代码)
import tensorflow as tf
import matplotlib.pyplot as plt
# 随机数生成
a = tf.random_normal([2,20])
# 启动会话
sess = tf.Session()
# 运行
out = sess.run(a)
# 从运行结果中获得数据
x, y = out
# 绘图
plt.scatter(x, y)
# 显示图像
plt.show()
2、运行效果
1、使用TensorFlow绘制散点图(代码)
import tensorflow as tf
import matplotlib.pyplot as plt
# 随机数生成
a = tf.random_normal([2,20])
# 启动会话
sess = tf.Session()
# 运行
out = sess.run(a)
# 从运行结果中获得数据
x, y = out
# 绘图
plt.scatter(x, y)
# 显示图像
plt.show()
2、运行效果