摘要: from sklearn.metrics import confusion_matrixy_true = [2, 0, 2, 2, 0, 1]y_pred = [0, 0, 2, 2, 0, 2]print confusion_matrix(y_true, y_pred) 结果: [[2 0 0] 阅读全文
posted @ 2016-03-04 14:21 qqhfeng16 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 异常信息: SyntaxError: Non-ASCII character '\xe5' in file a.py on line 9, but no encoding declared; see http://www.python.org/peps/pep-0263.html for detai 阅读全文
posted @ 2016-03-04 14:06 qqhfeng16 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 很多新手刚开始学习python的时候经常会看到python 中__name__ = \'__main__\' 这样的代码,可能很多新手一开始学习的时候都比较疑惑,python 中__name__ = '__main__' 的作用,到底干嘛的? 有句话经典的概括了这段代码的意义: “Make a sc 阅读全文
posted @ 2016-03-04 13:53 qqhfeng16 阅读(266) 评论(0) 推荐(0) 编辑
摘要: import os curDir = os.getcwd() 最近使用Python 写了很多脚本,想导入脚本,发现不知道如何查看python 的默认工作目录,并修改默认工作目录。 方法/步骤 查看默认工作路径的命令: import os os.getcwd() 2 修改工作路径的命令是(注意路径要用 阅读全文
posted @ 2016-03-04 09:09 qqhfeng16 阅读(2916) 评论(0) 推荐(0) 编辑