ImportError:numpy.core.multiarray无法导入,无法加载本机TensorFlow运行时

时间:2017-12-06 12:54:33

标签: python tensorflow

我刚刚使用张量在python中启动了演示程序。 我是python的初学者。 我执行了命令:

  

python ./getStartWithTensor.py

但输出就像 commandline screenshot of tensor program execution

这是我写的代码:

import tensorflow as tf

# Model parameters
W = tf.Variable([.3], dtype=tf.float32)
b = tf.Variable([-.3], dtype=tf.float32)
# Model input and output
x = tf.placeholder(tf.float32)
linear_model = W*x + b
y = tf.placeholder(tf.float32)

# loss
loss = tf.reduce_sum(tf.square(linear_model - y)) # sum of the squares
# optimizer
optimizer = tf.train.GradientDescentOptimizer(0.01)
train = optimizer.minimize(loss)

# training data
x_train = [1, 2, 3, 4]
y_train = [0, -1, -2, -3]
# training loop
init = tf.global_variables_initializer()
sess = tf.Session()
sess.run(init) # reset values to wrong
for i in range(1000):
  sess.run(train, {x: x_train, y: y_train})

# evaluate training accuracy
curr_W, curr_b, curr_loss = sess.run([W, b, loss], {x: x_train, y: y_train})
print("W: %s b: %s loss: %s"%(curr_W, curr_b, curr_loss))

我该如何解决?我是python和tensorflow的新手。 感谢。

0 个答案:

没有答案