赞
踩
例子:
来源:stackoverflow:question
在运行github上的一个例子时,https://github.com/vsmolyakov/experiments_with_python/blob/master/chp01/ensemble_methods.ipynb,
进行代码检测,报错了使用Python3.x版本。
- plt.figure()
- (_, caps, _) = plt.errorbar(num_est, bg_clf_cv_mean, yerr=bg_clf_cv_std, c='blue', fmt='-o', capsize=5)
- for cap in caps:
- cap.set_markeredgewidth(1)
- plt.ylabel('Accuracy'); plt.xlabel('Ensemble Size'); plt.title('Bagging Tree Ensemble');
- plt.show()
实际上在这个例子中,有一行num_est = map(int, np.linspace(1,100,20)),这个在Python的2.7版本中产生的是一个List,而在Python3.x中产生的是一个Generators,所有建议把这一个替换成:
num_est = np.linspace(1,100,20).astype(int)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。