2016年10月26日
摘要: # This file generates an old version of the matplotlib logofrom __future__ import print_function# Above import not necessary for Python 3 onwards. Rec 阅读全文
posted @ 2016-10-26 20:12 Google-boy 阅读(401) 评论(0) 推荐(0)
摘要: Definition : sum(a, axis=None, dtype=None, out=None, keepdims=False) axis: None or int or tuple of ints, optional Axis or axes along which a sum is pe 阅读全文
posted @ 2016-10-26 17:37 Google-boy 阅读(218) 评论(0) 推荐(0)
摘要: from...import与import区别在于import直接导入指定的库,而from....import则是从指定的库中导入指定的模块 import...as则是将import A as B,给予A库一个B的别称,帮助记忆 在机器学习中,对象是指含有一组特征的行向量。这个领域最出色的技术就是使用 阅读全文
posted @ 2016-10-26 11:29 Google-boy 阅读(1878) 评论(0) 推荐(0)