我正在尝试使用tensorflow做MNIST数据集,这是一个练习,并且软件包存在一些问题。我正在使用Pycharm 2019.3.1。 这是我的代码:
import tensorflow as tf
import matplotlib.pyplot as plt
(x_train, y_train), (x_test, y_test) = tf.keras.datasets.mnist.load_data()
image_index = 7777
print(y_train(image_index))
plt.inshow(x_train(image_index))
我收到“没有名为tensorflow的模块”和“没有名为matplotlib的模块”错误。
答案 0 :(得分:1)
以上错误表明您尚未在系统中安装tensorflow和matplotlib库。您可以创建一个虚拟环境或conda环境,然后激活该环境,安装上述库并在新创建的虚拟环境或conda环境中运行上述python程序。