python分为:程序编码(python安装程序)、文件编码。查看程序编码方式:sys.getdefaultencoding()查看文件编码方式:1.import chardet 2. f open(lianxi1-qus.py) data f.read() print chardet.detect(data)字符编码发展历程&#…
在Coursera机器学习课程中,第一篇练习就是如何使用最小均方差(Least Square)来求解线性模型中的参数。本文从概率论的角度---最大化似然函数,来求解模型参数,得到线性模型。本文内容来源于:《A First Course of Machine Learning》…