我在Colaboratory练习tesorflow
,我的代码如下。
有一些问题,错误信息是
" TypeError:+的不支持的操作数类型:' map'并且'浮动'"
有人可以告诉我出了什么问题吗?谢谢!
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(20)
y = map(lambda x: x + np.random.randn(1), x)
a, b = np.polyfit(x, y, 1)
plt.plot(x, y, 'o', np.arange(20), a*np.arange(20)+b, '-');**
答案 0 :(得分:2)
y = list(map(lambda x: x + np.random.randn(1), x))
答案 1 :(得分:0)
尝试替换
y = map(input1(x), x)
与
y = map(input1, x)
答案 2 :(得分:0)