LaTex报"Missing $ inserted"的解决方法

Latex中加入了一个多图,编译出现这样的错误。原因是在图的caption里使用了下标线_。因为latex会把它作为有特殊意义的标号或作为数学模式(math mode)进行编译。 转义需使用 \ How to typeset an underscore character The underscore character _ is ordinarily used in TeX to indicate a subscript in maths mode; if you type _ , on its ...

Continue Reading »
分享到:

机器学习(3)

太监,编写博客太累了,发现网上有很多斯坦福机器学习的学习博客和笔记。比较好的有这两篇。 http://blog.csdn.net/artprog/article/details/51280821 https://mooc.guokr.com/note/16274/ 这里贴一个自己写的正规方程的python实现,利用numpy,很短 import numpy as np # y = 3 + 2 * x1 + 1 * x2 x_train = np.array([[1, 2], [2, 1], [2, 3],...

Continue Reading »
分享到:

Python3.6.3 安装 numpy

NumPy系统是Python的一种开源的数值计算扩展。这种工具可用来存储和处理大型矩阵,比Python自身的嵌套列表(nested list structure)结构要高效的多(该结构也可以用来表示矩阵(matrix))。据说NumPy将Python相当于变成一种免费的更强大的MatLab系统。NumPy本身用C实现。 但是numpy对python3的支持不是很快,目pip支持最高python3.5,在最新python3.6.3不支持,好在非官网版(也能用)给出了numpy安装方法。 网址: https:...

Continue Reading »
分享到: