摘要:
郑捷《机器学习算法原理与编程实践》学习笔记(第一章 机器学习基础) 机器学习对象是指含有一组特征的行向量,也称为特征向量。 一般而言,一个对象应视为完整的个体,代表现实中有意义的事物,不能轻易拆分。 对于文本类数据集,需要首先生成词袋列表,再将每个词出现的词频数值化。 例如: My dog ate 阅读全文
摘要:
```python
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
from matplotlib.ticker import LinearLocator from matplotlib.font_manager import FontProperties
# 用于解决 Windows 系统,显示中文字体的问题
... 阅读全文
摘要:
matrix: 矩阵,更多参考 "英文" ) Submatrix:子矩阵 Linear equations:线性方程组 Linear transformations:线性变换 Square matrix:方阵 Identity matrix:单位阵 Diagonal and triangular m 阅读全文