The first column The second clumn
object string type
typedef typedef type newname;
//use typedef to define a new type
typedef typedef int feet;
//use typedef to define a int type
enumeration enum color {red,green,blue} c; c = blue;
enumeration 列举
PCA principal component analysis
LDA Linear Discriminant Analysis
Discriminant 判别
enum color_set1 {RED,BLUE,WHITE,BLACK};
//use enumeration to define color_set1
enum fruit_set{apple,orange,banana=1 ,peach,grape}
//Enum constant apple = 0 ,orange = 1,banana = 1,peach = 2
enum week{Sun=7,Mon=1,Tue ,Wed ,Thu,Fri , Sat}
//The value of the enumeration constants Sun,Mon,Tue and so on are 7,1,2,3,4,5 and 6, respectively
iterable 迭代
enumeration variable
L = {'Google' , 'Runoob' , 'Taobao'} L[2]
['Taobao']#read the third element in the list
L = {'Google' , 'Runoob' , 'Taobao'} L[-2]
['Runoob']#read the penultimate element in the list
L = {'Google' , 'Runoob' , 'Taobao'} L[1:]
['Runoob','Taobao']#start the list from the second element
noob 菜鸟,由newbie衍生而来
penultimate 倒数第二个的
[:-1] Represents traversing from the first
element to the second to last element
[-5:] Interception from the fifth countdown
str[:-3] start left to third last (excluding third)
Interception 截取
counter 计数器
principal component analysis PCA 主成分分析
component 成分
ICP Iterative Closest Point (ICP) 迭代最近点算法 is an
slgorithm employed to minimize the difference between two clouds of points
Iterative 迭代
SVD singular value decomposition

Performance of SGD optimization methods on
loss surface


Performance of SGD optimization methods
at the saddle point of the loss surface

The first column The second clumn
object string type
typedef typedef type newname; //use typedef to define a new type
typedef typedef int feet; //use typedef to define a int type
enumeration enum color {red,green,blue} c; c = blue;
enumeration 列举
PCA principal component analysis
LDA Linear Discriminant Analysis
Discriminant 判别
enum color_set1 {RED,BLUE,WHITE,BLACK}; //use enumeration to
define color_set1
enum fruit_set{apple,orange,banana=1 ,peach,grape}
//Enum constant apple = 0 ,orange = 1,banana = 1,peach = 2
enum week{Sun=7,Mon=1,Tue ,Wed ,Thu,Fri , Sat}
//The value of the enumeration constants Sun,Mon,Tue and so on are 7,1,2,3,4,5 and 6, respectively
iterable 迭代
enumeration variable
L = {'Google' , 'Runoob' , 'Taobao'} L[2] ['Taobao']
#read the third element in the list
L = {'Google' , 'Runoob' , 'Taobao'} L[-2] ['Runoob']
#read the penultimate element in the list
L = {'Google' , 'Runoob' , 'Taobao'} L[1:] ['Runoob','Taobao']
#start the list from the second element
noob 菜鸟,由newbie衍生而来
penultimate 倒数第二个的
[:-1] Represents traversing from the first element
to the second to last element
[-5:] Interception from the fifth countdown
str[:-3] start left to third last (excluding third)
Interception 截取
counter 计数器
principal component analysis PCA 主成分分析
component 成分
ICP Iterative Closest Point (ICP)
迭代最近点算法 is an slgorithm employed to minimize the difference between two clouds of points
Iterative 迭代
SVD singular value decomposition
RBF Radial Basis Function
PCA Signal representation (principal component analysis)
LDA Supervised dimensionality reduction method
PCA PCA is unsupervised dimensionality reduction method
LDA (Latent Dirichlet Allocation) classification
Rayleigh quotient 瑞丽商
genralized Rayleigh quotient 广义瑞丽商
Fisher 判别准则函数
拉普拉斯矩阵
laplace matrix
positive define matrix 就是一个椭球
Aaxil elligsoid :eigenvector
Aaxil
elligsoid
eigenvector 特征向量
det determinant 行列式
lower triangular 下三角矩阵
upper triangular 上三角矩阵
K-Nearest Neighbor algorithm KNN algorithm
KNN given a data set,For new input instances,Find the instances closest to the
instance in the traning data set(that is,the K neighbor mentioned above)
切比雪夫距离 \(D_Chebyshev(p,q):= max_i(||p_i - q_i||)\)
矩阵的共轭
Hessian Matrix 海塞矩阵
Semi-positive definite matrix all eigenvalues are not less than zero
positive definite matrix all eigenvalues are greater than zero
s \(A = {a_{i,i}} \in C^{n \times n}\)
Fisher Discrimination criterion 费舍尔判别准则
类均值向量 m_i= \frac{1}{N_i}
positive define matrix the transmission to the positive
typedef char line[81];char text[81];//typedef char line[81];line text,secondline;
typedef typedef char pstr;pstr str= 'abc';int mystrcmp(pstr,pstr)
diagonal 斜线,对角线
Laplacian matrix
unitary linear space 酉空间
stochastic 随机的
Adam [TensorFlow: learning_rate=0.001,beta1 = 0.9,beta2 = 0.999,epsilon=1e-8]
epsilon tf.keras.backend.epsilon
epsilon Returns the value of the fuzz factor used in numeric expressions
fuzz factor 模糊因子
32-bit compiler char:1 byte(8 bit) ; char*:4 bytes(https://www.cnblogs.com/lovevivi/p/3334369.html)
https Hyper Text Transfer Protocol Secure
PCA PCA that is dimensionalisy reduction opration is to find a new coordinate system.
PCA Then subtract some of the dimensions to make the error small
postfix 后缀,reverse Polish notation
stack stack is list that restrict
top it is the bottom of the list
pop
The first column The second clumn
:-: :-:
object string type
typedef typedef type newname; //use typedef to define a new type
typedef typedef int feet; //use typedef to define a int type
enumeration enum color {red,green,blue} c; c = blue;
enumeration 列举
PCA principal component analysis
LDA Linear Discriminant Analysis
Discriminant 判别
enum color_set1 {RED,BLUE,WHITE,BLACK}; //use enumeration to define color_set1
enum fruit_set{apple,orange,banana=1 ,peach,grape} //Enum constant apple = 0 ,orange = 1,banana = 1,peach = 2
enum week{Sun=7,Mon=1,Tue ,Wed ,Thu,Fri , Sat} //The value of the
enumeration constants Sun,Mon,Tue and so on are 7,1,2,3,4,5 and 6, respectively
iterable 迭代
enumeration variable
L = {'Google' , 'Runoob' , 'Taobao'} L[2] ['Taobao']
#read the third element in the list
L = {'Google' , 'Runoob' , 'Taobao'} L[-2] ['Runoob']
#read the penultimate element in the list
L = {'Google' , 'Runoob' , 'Taobao'} L[1:] ['Runoob','Taobao']
#start the list from the second element
noob 菜鸟,由newbie衍生而来
penultimate 倒数第二个的
[:-1] Represents traversing from the first element to the second to last element
[-5:] Interception from the fifth countdown
str[:-3] start left to third last (excluding third)
Interception 截取
counter 计数器
principal component analysis PCA 主成分分析
component 成分
ICP Iterative Closest Point (ICP) 迭代最近点算法 is an slgorithm employed to
minimize the difference between two clouds of points
Iterative 迭代
SVD singular value decomposition
RBF Radial Basis Function
PCA Signal representation (principal component analysis)
LDA Supervised dimensionality reduction method
PCA PCA is unsupervised dimensionality reduction method
LDA (Latent Dirichlet Allocation) classification
Rayleigh quotient 瑞丽商
genralized Rayleigh quotient 广义瑞丽商
Fisher 判别准则函数
拉普拉斯矩阵
laplace matrix
positive define matrix 就是一个椭球
Aaxil elligsoid :eigenvector
Aaxil
elligsoid
eigenvector 特征向量
det determinant 行列式
lower triangular 下三角矩阵
upper triangular 上三角矩阵
K-Nearest Neighbor algorithm KNN algorithm
KNN given a data set,For new input instances,Find the instances closest to the
instance in the traning data set(that is,the K neighbor mentioned above)
切比雪夫距离 \(D_Chebyshev(p,q):= max_i(||p_i - q_i||)\)
矩阵的共轭
Hessian Matrix 海塞矩阵
Semi-positive definite matrix all eigenvalues are not less than zero
positive definite matrix all eigenvalues are greater than zero
s \(A = {a_{i,i}} \in C^{n \times n}\)
Fisher Discrimination criterion 费舍尔判别准则
类均值向量 m_i= \frac{1}{N_i}
positive define matrix the transmission to the positive
typedef char line[81];char text[81];//typedef char line[81];line text,secondline;
typedef typedef char pstr;pstr str= 'abc';int mystrcmp(pstr,pstr)
diagonal 斜线,对角线
Laplacian matrix
unitary linear space 酉空间
stochastic 随机的
Adam [TensorFlow: learning_rate=0.001,beta1 = 0.9,
beta2 = 0.999,epsilon=1e-8]
epsilon tf.keras.backend.epsilon
epsilon Returns the value of the fuzz factor
used in numeric expressions
fuzz factor 模糊因子
32-bit compiler char:1 byte(8 bit) ; char*:4 bytes(https://www.cnblogs.com/lovevivi/p/3334369.html)
https Hyper Text Transfer Protocol Secure
PCA PCA that is dimensionalisy reduction opration is to find a new coordinate system.
PCA Then subtract some of the dimensions to make the error small
z+c 折叠
z+o 折叠
O(log_2(N^2)) 幂函数,以2为底,数据每次减少一半
子空间的交
Bayesian Decision Theory Quantifies the tradoffs between various classification
using sea bass - salmon classification
likelihood how frequently we will measure a pattern with feature value x given
that the pattern belongs to class \(w_j\)
类条件概率 \(P(x|W_j)\)
(post)后验概率 \(P(w_j|x)\)
guassian function p(x) = \(frac{1}{}\)
\quad 退一格
\qquad 退两格
Prior (UnconditionalOo Probability
Cavity P(Cavity) = 0.1 means that " in the absence of any
other information,
there is a 10% chance that the patient is having a cavity".
cavity 蛀牙
P(A B) = P(A,B)/P(B)
P(B) = \(\sum\limits_{j=1}^{n}P(B|A_j)P(A_j)\)
Bayes
pdf probability density function
pmf probability mass function
df degree of freedom
类条件概率密度函数 P(X
条件风险
conditional risk R =
product operator 乘积运算符
product operator \(\prod\)
integral operator 积分运算符
integral operator \(\int\)
EM algorithm Expectation Maximization 期望值最大
P(A B) =\(\frac{P(A,B)}{P(B)}\)
= $frac{P(B
Directed Acyclic Graph DAG 有向无环图,一个贝叶斯网络是一个有向无环图
acyclic 无环
举个栗子 P(Added vinegar
P(A B) = \(\frac{P(A,B)}P(B)}\)
P(AB)P(B) = P(B A)P(A)
P(A B)P(B) = P(B
P(AB) P(reason one leads to the result
P(reason one result) = $\frac P(reason one cause the result)}{P(result)}
vinegar
平方根 \sqrt{x+y}
square root 平方根
Bayesian Decision Theory
P(A B) = \(\frac{P(A,B)}{P(B)}\)
P(B A)
Bayes Bayesian Notation
Decision Surface 决策面
Discriminant Function 判别方程
Quadratic Discriminant Analysis QDA
P(reason one result)
linked list
collection
ADT
int size() const
const
int const size;
const int size;
int const size = 10;
LinearList
#ifndef if not defined
#define x
#endif
#ifndef
线性映射的矩阵表示
int *const p;
//the meaning is that const point,
the value of p can not modify
P is a pointer,pointer p is const,
it's value can not modify,
but can modify the integral value to which the p point
const int p;
int const
p;
//it's meaning is pointer pointed to const,
the const value of pointer can not modify.
If const is on the left side of * ,const is used to modify
the variable pointed to by the pointer,that is,
the pointer points to the bit constant;
NLP natural Language Processing
int *const p;//it's meaning is const pointer,
the value of p can not modify
If const is on the right side of *,
const is the decoration of the pointer itself,
and the pointer itself is a constant.
int b = 5;int c = 3;int const p = &b; p = 6; //it is right to modify the value pointer point to,
SVM Support Vector Machine
ApacheCN-apchecn.org
coursera
子空间的直和
矩阵的值域 \(R(A) = L(\mathbf{a}_1,\cdots,\mathbf{a}_n = \lbrace A\mathbf{x} \ \|\ \mathbf{x}\in \mathbb{R}^n \rbrace\)
\mathbb Blackboardbold 黑板粗体,表示向量或集合的符号
\mathbf 变为粗体

转载于:https://www.cnblogs.com/hugeng007/p/9645747.html

hugeng007_demo03_相关推荐

最新文章

  1. SQL Server 数据库文件 4 点注意
  2. swift 适配的方法autolayout  和 masory===snapKit库
  3. ASP.NET Ajax编程技术学习
  4. 第六十五期:IBM净利润下降38%,旧时代巨头如何自救?
  5. 最新揭秘:FaceBook网站架构图
  6. 前后端分离式分布式微服务架构项目 学成在线开发项目 源码 视频 文档 工具 合集百度云下载地址
  7. linux十大实用工具,10大好用的Linux实用工具推荐
  8. word如何删除空行和全角空格_word中如何去掉空格和空行
  9. Android 适配器 自定义
  10. ionic ion-refresher 下拉刷新的使用。
  11. flask debug模式logging模块报错os.rename(self.baseFilename, dfn) WindowsError: [Error 32]
  12. 计算机专业需要物理力学,读经典物理学和量子力学所想到的计算机哲学
  13. arcgis中从面要素中抠一个洞
  14. MySQL索引的详细分析和数据结构
  15. 大魔王程序员生成记#06.1#C语言习题
  16. SAP HANA业务第三季度实现三位数增长
  17. 所有计算机专业的学生应该认识到的
  18. 如何更好地学习新概念英语
  19. 配置计算机名和工作组,TCP/IP地址配置,网络连通性测
  20. OCP/OCA认证考试指南全册读书笔记 第一章 Oracle Database 11g体系结构概述

热门文章

  1. 相机360 Camera360 v9.3.0 + v2.5.2 Lite for Android
  2. linux下i2c驱动架构全面分析,linux I2C驱动 :整体架构(1)
  3. Disruptor本地线程队列--是什么决定了批量数据的多少_什么决定了endofBatch是true还是false---线程间通信工作笔记006
  4. 我在B站拍Vlog:B站95后UP主养成记
  5. 努力,努力,只要再多坚持一会
  6. 嵌入式知识-ARM裸机-学习笔记(8):SoC定时器与看门狗(WDT)
  7. C++类和对象(三)
  8. 基于 MINA 的 TLS/SSL NIO Socket 实现(二)
  9. 人工智能和机器学习之间的区别
  10. 超出两行用省略号表示