【矩阵分解】PCA - 主成分分析中的数学原理

前言

本文主要对PCA主成分分析中的数学原理进行介绍,将不涉及或很少涉及代码实现或应用,阅读前请确保已了解基本的机器学习相关知识。

文章概述

PCA主成分分析属于矩阵分解算法中的入门算法,通过分解特征矩阵来实现降维。

本文主要内容:

  • 前置知识:包括样本方差、协方差、协方差矩阵、散度矩阵的简单介绍
  • 特征值分解EVD和奇异值分解EVD的原理和流程
  • 分别基于EVD和SVD的PCA实现方法
  • PCA的应用以及对一些应用或说明的补充

前置知识

样本方差(Variance):样本方差反映一组数据变异程度或分散程度大小的指标;计算公式:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> V a r = 1 N − 1 ∑ i = 1 N ( x i − x ˉ ) 2 Var = \frac{1}{N-1}\sum^N_{i=1}(x_i-\bar{x})^2 </math>Var=N−11i=1∑N(xi−xˉ)2

  • <math xmlns="http://www.w3.org/1998/Math/MathML"> N N </math>N:某特征下的样本量
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> x i x_i </math>xi:某特征下的第 <math xmlns="http://www.w3.org/1998/Math/MathML"> i i </math>i 个样本值
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> x ˉ \bar{x} </math>xˉ:某特征下样本的均值

为什么分母为 <math xmlns="http://www.w3.org/1998/Math/MathML"> N − 1 N-1 </math>N−1:这是在计算样本方差时对方差计算公式的一个修复,目的是得到总体方差的一个无偏估计,具体可参考下面文章中的"无偏估计与样本方差小节":

协方差 (Covariance):用来刻画两个随机变量 <math xmlns="http://www.w3.org/1998/Math/MathML"> X X </math>X, <math xmlns="http://www.w3.org/1998/Math/MathML"> Y Y </math>Y之间的相关性;计算公式:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> C o v ( X , Y ) = 1 N − 1 ∑ i = 1 N ( x i − x ˉ ) ( y i − y ˉ ) Cov(X,Y) = \frac{1}{N-1}\sum^N_{i=1}(x_i-\bar{x})(y_i-\bar{y}) </math>Cov(X,Y)=N−11i=1∑N(xi−xˉ)(yi−yˉ)

  • <math xmlns="http://www.w3.org/1998/Math/MathML"> N N </math>N:特征 <math xmlns="http://www.w3.org/1998/Math/MathML"> X , Y X, Y </math>X,Y 下的样本量
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> x i , y i x_i, y_i </math>xi,yi:特征 <math xmlns="http://www.w3.org/1998/Math/MathML"> X , Y X,Y </math>X,Y 下的第 <math xmlns="http://www.w3.org/1998/Math/MathML"> i i </math>i 个样本值
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> x ˉ , y ˉ \bar{x},\bar{y} </math>xˉ,yˉ:特征 <math xmlns="http://www.w3.org/1998/Math/MathML"> X , Y X, Y </math>X,Y 下样本的均值

样本方差就是协方差的一种特殊形式,当两个变量相同时,协方差与样本方差相同。

如果两个变量的变化趋势一致,也就是说如果其中一个大于自身的期望值,另外一个也大于自身的期望值,那么两个变量之间的协方差就是正值,反之则为负值。

  • 协方差为正或为负描述的是两组数据中的整体变化趋势相同或相反;协方差为正,则我们说两变量正相关,反之则为负相关。

协方差的绝对值越大,一定程度上两变量相关性越强

  • 从公式上可以看出,若当 <math xmlns="http://www.w3.org/1998/Math/MathML"> x i x_i </math>xi 大于 <math xmlns="http://www.w3.org/1998/Math/MathML"> x ˉ \bar{x} </math>xˉ 时, <math xmlns="http://www.w3.org/1998/Math/MathML"> y i y_i </math>yi 总是大于或小于 <math xmlns="http://www.w3.org/1998/Math/MathML"> y ˉ \bar{y} </math>yˉ,则结果的绝对值是最大的(全为正数或全为负数然后累加),这种情况也就是变量 <math xmlns="http://www.w3.org/1998/Math/MathML"> X X </math>X 与变量 <math xmlns="http://www.w3.org/1998/Math/MathML"> Y Y </math>Y 之间的变化趋势总是相同的,我们就认为这两个变量之间有着很强的相关性。

即协方差的正负表示两组数据的总体变化趋势,绝对值大小表示变化趋势符合程度。

协方差矩阵 (Covariance Matrix):一个大小为 <math xmlns="http://www.w3.org/1998/Math/MathML"> N ∗ N N*N </math>N∗N 的对称矩阵,且是半正定矩阵,由某组数据中的每对变量之间的协方差组成,正对角线上元素为各变量的方差。

例:某数据中含有三个变量(特征),分别为 <math xmlns="http://www.w3.org/1998/Math/MathML"> X , Y , Z X,Y,Z </math>X,Y,Z,则该数据的协方差矩阵为:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> Σ = [ C o v ( X , X ) C o v ( X , Y ) C o v ( X , Z ) C o v ( Y , X ) C o v ( Y , Y ) C o v ( Y , Z ) C o v ( Z , X ) C o v ( Z , Y ) C o v ( Z , Z ) ] \Sigma = \begin{bmatrix} Cov(X, X) & Cov(X,Y) & Cov(X,Z) \\ Cov(Y,X) & Cov(Y,Y) & Cov(Y,Z) \\ Cov(Z,X) & Cov(Z,Y) & Cov(Z,Z) \end{bmatrix} </math>Σ=⎣ ⎡Cov(X,X)Cov(Y,X)Cov(Z,X)Cov(X,Y)Cov(Y,Y)Cov(Z,Y)Cov(X,Z)Cov(Y,Z)Cov(Z,Z)⎦ ⎤

不难看出, <math xmlns="http://www.w3.org/1998/Math/MathML"> C o v ( X , X ) Cov(X,X) </math>Cov(X,X) 其实就是变量 <math xmlns="http://www.w3.org/1998/Math/MathML"> X X </math>X 的方差,即正对角线上的三个元素分别为这三个变量本身的方差;由于 <math xmlns="http://www.w3.org/1998/Math/MathML"> C o v ( X , Y ) = C o v ( Y , X ) Cov(X,Y) = Cov(Y,X) </math>Cov(X,Y)=Cov(Y,X),因此该矩阵为对称矩阵;共含有3个变量,因此该协方差矩阵的大小为 <math xmlns="http://www.w3.org/1998/Math/MathML"> 3 ∗ 3 3*3 </math>3∗3。

散度矩阵:散度矩阵和协方差矩阵类似,有时计算散度矩阵,有时计算协方差矩阵,二者意义差不多,散度矩阵公式:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> S = ( n − 1 ) [ C o v ( X , X ) C o v ( X , Y ) C o v ( X , Z ) C o v ( Y , X ) C o v ( Y , Y ) C o v ( Y , Z ) C o v ( Z , X ) C o v ( Z , Y ) C o v ( Z , Z ) ] S = (n-1) \begin{bmatrix} Cov(X, X) & Cov(X,Y) & Cov(X,Z) \\ Cov(Y,X) & Cov(Y,Y) & Cov(Y,Z) \\ Cov(Z,X) & Cov(Z,Y) & Cov(Z,Z) \end{bmatrix} </math>S=(n−1)⎣ ⎡Cov(X,X)Cov(Y,X)Cov(Z,X)Cov(X,Y)Cov(Y,Y)Cov(Z,Y)Cov(X,Z)Cov(Y,Z)Cov(Z,Z)⎦ ⎤

从公式也可以看出,散度矩阵其实就是协方差矩阵乘以 <math xmlns="http://www.w3.org/1998/Math/MathML"> n − 1 n-1 </math>n−1,不难看出两矩阵的特征值是相同的。

特征值分解与奇异值分解

EVD:特征值分解

对于矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A,有一组特征向量 <math xmlns="http://www.w3.org/1998/Math/MathML"> V V </math>V,将这组向量进行正交化、单位化,就能得到一组正交单位向量。特征值分解,就是将矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 分解为如下式:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> A = Q Λ Q − 1 A=Q\Lambda Q^{-1} </math>A=QΛQ−1

  • <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A: <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 阶方阵
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> Q Q </math>Q:由矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 对应的特征向量组成的矩阵
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> Λ \Lambda </math>Λ:对角阵,正对角线上各元素由矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 对应的特征向量组成,其中按特征值大小进行依次排列

线性代数中相似矩阵的定义 :设 <math xmlns="http://www.w3.org/1998/Math/MathML"> A , B A,B </math>A,B 是 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 阶方阵,若存在可逆矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> P P </math>P,使得 <math xmlns="http://www.w3.org/1998/Math/MathML"> B = P − 1 A P B=P^{-1}AP </math>B=P−1AP,则称矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 与 <math xmlns="http://www.w3.org/1998/Math/MathML"> B B </math>B 相似, <math xmlns="http://www.w3.org/1998/Math/MathML"> P − 1 A P P^{-1}AP </math>P−1AP 是对 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 做相似变换。

参考相似矩阵的定义,左乘 <math xmlns="http://www.w3.org/1998/Math/MathML"> P P </math>P 右乘 <math xmlns="http://www.w3.org/1998/Math/MathML"> P − 1 P^{-1} </math>P−1 和左乘 <math xmlns="http://www.w3.org/1998/Math/MathML"> P − 1 P^{-1} </math>P−1 右乘 <math xmlns="http://www.w3.org/1998/Math/MathML"> P P </math>P 只是参考矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 和 <math xmlns="http://www.w3.org/1998/Math/MathML"> B B </math>B 的角度不同,例如在 <math xmlns="http://www.w3.org/1998/Math/MathML"> B = P − 1 A P B= P^{-1}AP </math>B=P−1AP 中两边分别左乘一个矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> P P </math>P 右乘一个矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> P − 1 P^{-1} </math>P−1 后可以得到 <math xmlns="http://www.w3.org/1998/Math/MathML"> A = P B P − 1 A=PBP^{-1} </math>A=PBP−1。

在特征值分解中,不难看出其本质就是矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 与对角阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> Λ \Lambda </math>Λ 相似,也就是 矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 可相似对角化, <math xmlns="http://www.w3.org/1998/Math/MathML"> Λ \Lambda </math>Λ 为矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 的相似标准型, <math xmlns="http://www.w3.org/1998/Math/MathML"> A = Q Λ Q − 1 A=Q\Lambda Q^{-1} </math>A=QΛQ−1,其中对角阵中各元素为矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 对应的特征值,特征值对应的特征向量组成矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> Q Q </math>Q,即特征值分解其实就是矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 的相似对角化。

特征值分解基本流程 :已知 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 阶方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A,有以下式子:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> A x = λ x → ( A − λ E ) X = 0 → ∣ A − λ E ∣ = 0 Ax=\lambda x \rightarrow (A-\lambda E)X=0 \rightarrow |A-\lambda E|=0 </math>Ax=λx→(A−λE)X=0→∣A−λE∣=0

以此求出方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 的特征值,然后将各个特征值代入到原式 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∣ A − λ E ∣ |A-\lambda E| </math>∣A−λE∣ 中求出各特征向量,以特征值和特征向量得到 <math xmlns="http://www.w3.org/1998/Math/MathML"> A = Q Λ Q − 1 A=Q\Lambda Q^{-1} </math>A=QΛQ−1 中矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> Q Q </math>Q 和对角阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> Λ \Lambda </math>Λ。

一个高维矩阵本质上就是高维空间中的一个线性变换,该矩阵的各特征值反映该矩阵各个方向变换的程度,我们取从大到小特征值中的前 <math xmlns="http://www.w3.org/1998/Math/MathML"> m m </math>m 个特征值,也就是提取了该矩阵变化程度最大的 <math xmlns="http://www.w3.org/1998/Math/MathML"> m m </math>m 个方向,其它方向进行舍弃,也就提取了该矩阵中最重要的 <math xmlns="http://www.w3.org/1998/Math/MathML"> m m </math>m 个特征,以此来近似原矩阵的线性变换。

特征值分解的局限性 :特征值分解公式中的矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A 为 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 阶方阵,但是在绝大多数情况下数据集中的特征和样本数都是不同的,特征值分解无法应用于这种情况。

SVD:奇异值分解

相比特征值分解,奇异值分解可以适用于任意形状的矩阵,公式如下:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> A = U Σ V T A=U\Sigma V^T </math>A=UΣVT

  • <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A:形状为 <math xmlns="http://www.w3.org/1998/Math/MathML"> m ∗ n m*n </math>m∗n 的矩阵
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> U U </math>U:形状为 <math xmlns="http://www.w3.org/1998/Math/MathML"> m ∗ m m*m </math>m∗m 的正交矩阵,其中的各向量被称为左奇异向量;该矩阵也被称为左奇异矩阵
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> Σ \Sigma </math>Σ:形状为 <math xmlns="http://www.w3.org/1998/Math/MathML"> m ∗ n m*n </math>m∗n 的矩阵,该矩阵除了正对角线以外其它位置的元素均为0,正对角线上的元素被称为奇异值;该矩阵也被称为对角奇异矩阵
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> V V </math>V:形状为 <math xmlns="http://www.w3.org/1998/Math/MathML"> n ∗ n n*n </math>n∗n 的正交矩阵,其中的各向量被称为右奇异向量;该矩阵也被称为右奇异矩阵

奇异值的数量 :通过对角奇异矩阵的形状为 <math xmlns="http://www.w3.org/1998/Math/MathML"> m ∗ n m*n </math>m∗n 可以发现奇异值的数量为 <math xmlns="http://www.w3.org/1998/Math/MathML"> m i n ( m , n ) min(m,n) </math>min(m,n)

基于特征值分解的局限性,我们引入奇异值分解,奇异值分解的思路与其大同小异,假设有形状为 <math xmlns="http://www.w3.org/1998/Math/MathML"> m ∗ n m*n </math>m∗n 的矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A </math>A,则有形状为 <math xmlns="http://www.w3.org/1998/Math/MathML"> n ∗ n n*n </math>n∗n 的方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A T A A^TA </math>ATA 和 形状为 <math xmlns="http://www.w3.org/1998/Math/MathML"> m ∗ m m*m </math>m∗m 的方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A T AA^T </math>AAT

基于与特征值分解中相同的求特征值的公式,有:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> ( A T A ) v i = λ v i → ( A T A − λ E ) v i = 0 → ∣ A T A − λ E ∣ = 0 ( A A T ) u i = λ u i → ( A A T − λ E ) u i = 0 → ∣ A A T − λ E ∣ = 0 (A^TA)v_i = \lambda v_i \rightarrow (A^TA - \lambda E)v_i = 0 \rightarrow |A^TA - \lambda E| = 0 \\ (AA^T)u_i = \lambda u_i \rightarrow (AA^T - \lambda E)u_i = 0 \rightarrow |AA^T - \lambda E| = 0 \\ </math>(ATA)vi=λvi→(ATA−λE)vi=0→∣ATA−λE∣=0(AAT)ui=λui→(AAT−λE)ui=0→∣AAT−λE∣=0

分别求出方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A T A A^TA </math>ATA 和 方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A T AA^T </math>AAT 的各特征值和特征向量后,由于:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> A T A = ( U Σ V T ) T ( U Σ V T ) = V Σ T U T U Σ V T = V Σ 2 V T = V Σ 2 V − 1 A A T = ( U Σ V T ) ( U Σ V T ) T = U Σ V T V Σ T U T = U Σ 2 U T = U Σ 2 U − 1 A^TA = (U\Sigma V^T)^T(U\Sigma V^T) = V\Sigma^T U^T U \Sigma V^T = V\Sigma^2 V^T = V\Sigma^2 V^{-1} \\ AA^T = (U\Sigma V^T)(U\Sigma V^T)^T = U \Sigma V^T V\Sigma^T U^T = U\Sigma^2 U^T = U\Sigma^2 U^{-1} </math>ATA=(UΣVT)T(UΣVT)=VΣTUTUΣVT=VΣ2VT=VΣ2V−1AAT=(UΣVT)(UΣVT)T=UΣVTVΣTUT=UΣ2UT=UΣ2U−1

  • 性质一: <math xmlns="http://www.w3.org/1998/Math/MathML"> Σ \Sigma </math>Σ 为对称矩阵,对于对称矩阵有 <math xmlns="http://www.w3.org/1998/Math/MathML"> Σ T Σ = Σ 2 \Sigma^T \Sigma = \Sigma^2 </math>ΣTΣ=Σ2
  • 性质二: <math xmlns="http://www.w3.org/1998/Math/MathML"> V , U V,U </math>V,U 为正交矩阵,对于正交矩阵有 <math xmlns="http://www.w3.org/1998/Math/MathML"> V T V = E ( 单位阵 ) V^T V = E(单位阵) </math>VTV=E(单位阵), <math xmlns="http://www.w3.org/1998/Math/MathML"> V T = V − 1 V^T=V^{-1} </math>VT=V−1

从中我们可以看出方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A T A A^TA </math>ATA 的各个特征向量组成矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> U U </math>U,而方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A T AA^T </math>AAT 的各个特征向量组成矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> V V </math>V,矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> U , V U,V </math>U,V 中的各特征向量又被分别称为左奇异向量和右奇异向量。

奇异值求解的思路有两种,第一种方法为:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> A = U Σ V T → A V = U Σ V T V → A V = U Σ → A v i = σ i u i → σ i = A v i u i A=U\Sigma V^T \rightarrow AV = U\Sigma V^T V \rightarrow AV = U\Sigma \rightarrow Av_i = \sigma_i u_i \rightarrow \sigma_i = \frac{Av_i}{u_i} </math>A=UΣVT→AV=UΣVTV→AV=UΣ→Avi=σiui→σi=uiAvi

  • 这里的除法为对应位置元素相除

<math xmlns="http://www.w3.org/1998/Math/MathML"> A V = U Σ → A v i = σ i u i AV=U\Sigma \rightarrow Av_i = \sigma_i u_i </math>AV=UΣ→Avi=σiui,展开这个矩阵方程可得:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> A V = U Σ → A [ v 1 ⋯ v n ] = [ u 1 ⋯ u m ] [ σ 1 σ 2 ⋯ ] → A v i = σ i u i AV=U\Sigma \rightarrow A\begin{bmatrix} v_1 \cdots v_n \end{bmatrix} = \begin{bmatrix}u_1 \\ \cdots \\ u_m\end{bmatrix} \begin{bmatrix} \sigma_1 & & \\ & \sigma_2 & \\ & & \cdots \end{bmatrix} \rightarrow Av_i=\sigma_iu_i </math>AV=UΣ→A[v1⋯vn]=⎣ ⎡u1⋯um⎦ ⎤⎣ ⎡σ1σ2⋯⎦ ⎤→Avi=σiui

  • <math xmlns="http://www.w3.org/1998/Math/MathML"> v i v_i </math>vi:第 <math xmlns="http://www.w3.org/1998/Math/MathML"> i i </math>i 个右奇异向量
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> u i u_i </math>ui:第 <math xmlns="http://www.w3.org/1998/Math/MathML"> i i </math>i 个左奇异向量

由于我们上面方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A T A A^TA </math>ATA 和 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A T AA^T </math>AAT 的展开式中的对角奇异矩阵为 <math xmlns="http://www.w3.org/1998/Math/MathML"> Σ 2 \Sigma^2 </math>Σ2,因此易得第二种方法:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> σ i = λ i \sigma_i = \sqrt{\lambda_i} </math>σi=λi

  • 这里的 <math xmlns="http://www.w3.org/1998/Math/MathML"> λ i \lambda_i </math>λi 为第 <math xmlns="http://www.w3.org/1998/Math/MathML"> i i </math>i 个特征值
  • 方阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> A A T AA^T </math>AAT 和 <math xmlns="http://www.w3.org/1998/Math/MathML"> A T A A^TA </math>ATA 的各特征值相同,但特征值对应的特征向量不同,即左奇异向量和右奇异向量不同

在矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> Σ \Sigma </math>Σ 中各奇异值一般也是从大到小排列的。

通过SVD的过程我们可以看出,奇异值分解相当于将特征值分解将方阵拓展到了任意形状的矩阵,最终选择前 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个最大的奇异值即可。

PCA基本原理

特征降维的目的:减少特征的数量的同时,又保留大部分有效信息。

  • 将带有重复信息的特征进行合并,删除无效特征等,创造出能够代表原特征矩阵大部分信息的特征更少的新特征矩阵

PCA的本质就是在特征空间中通过某种线性变换将某些特征进行合并,合并后的新特征保留原来特征的大部分信息,即拥有最大的方差,被合并的特征在经过这种变换后方差很小,因此不再能提供有效信息,我们将其舍弃(被丢弃的特征向量被认为信息量很少, 这些信息很可能就是噪音),从而实现特征降维;此外,保留合并的新特征被称为 "主成分"。

如图所示,图中通过旋转坐标轴将特征 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 1 x_1 </math>x1 与 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 2 x_2 </math>x2 合并为 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 1 ∗ x_1^* </math>x1∗,通过观察可以看出原始特征 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 1 x_1 </math>x1 和 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 2 x_2 </math>x2 的方差都为 <math xmlns="http://www.w3.org/1998/Math/MathML"> 2 3 \frac{2}{3} </math>32,变换处理后的特征 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 1 ∗ x_1^* </math>x1∗ 和 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 2 ∗ x_2^* </math>x2∗ 的方差分别为 <math xmlns="http://www.w3.org/1998/Math/MathML"> 4 3 \frac{4}{3} </math>34 和 <math xmlns="http://www.w3.org/1998/Math/MathML"> 0 0 </math>0,此时 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 2 ∗ x_2^* </math>x2∗ 的方差过小,我们不认为该特征能有效地提供信息,因此舍去,保留 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 1 ∗ x_1^* </math>x1∗。

此案例数据比较完美,也就是合并后 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 2 ∗ x_2^* </math>x2∗ 的方差为0, <math xmlns="http://www.w3.org/1998/Math/MathML"> x 1 ∗ x_1^* </math>x1∗ 的方差等于原始特征 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 1 x_1 </math>x1 和 <math xmlns="http://www.w3.org/1998/Math/MathML"> x 2 x_2 </math>x2 的方差之和,这里PCA认为保留了原来100%的信息,具体方法下方会详细介绍。

PCA主成分分析分别基于特征值分解和奇异值分解,因此一般有两种实现方法

PCA的两种实现方法

基于特征值分解 :假设数据集 <math xmlns="http://www.w3.org/1998/Math/MathML"> X = [ x 1 x 2 ⋯ x n ] X=\begin{bmatrix}x_1 & x_2 & \cdots & x_n \end{bmatrix} </math>X=[x1x2⋯xn],共 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 个特征,需要降至 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 维,一般流程如下:

  1. 去中心化处理,即每个特征下的各个样本值减去各自均值
  2. 计算协方差矩阵,即 <math xmlns="http://www.w3.org/1998/Math/MathML"> 1 n X X T \frac{1}{n}XX^T </math>n1XXT
  3. 基于特征值分解方法求协方差矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> 1 n X X T \frac{1}{n}XX^T </math>n1XXT 的特征值和特征向量(这里除不除以 <math xmlns="http://www.w3.org/1998/Math/MathML"> 1 n \frac{1}{n} </math>n1 对结果没有影响)
  4. 对特征值从大到小排序,选择其中最大的 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个特征值
  5. 将选中的 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个特征向量分别作为行向量组成新的特征向量矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> P P </math>P
  6. 将原数据映射新空间中,即 <math xmlns="http://www.w3.org/1998/Math/MathML"> Y = P X Y=PX </math>Y=PX,其中 <math xmlns="http://www.w3.org/1998/Math/MathML"> Y Y </math>Y 为降维后的特征矩阵

对于使用的矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> 1 n X X T \frac{1}{n}XX^T </math>n1XXT, <math xmlns="http://www.w3.org/1998/Math/MathML"> X X T XX^T </math>XXT 中的各元素为各特征之间的内积,也就是协方差信息,保存了各个向量之间的协方差(相关性)和每个向量本身的方差,每个向量与其它向量的相关性组成的矩阵相当于对原来整个数据集中所有数据的一个压缩,当然这个过程也会损失一定程度的信息。

基于奇异值分解 :假设数据集 <math xmlns="http://www.w3.org/1998/Math/MathML"> X = [ x 1 x 2 ⋯ x n ] X=\begin{bmatrix}x_1 & x_2 & \cdots & x_n \end{bmatrix} </math>X=[x1x2⋯xn],共 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 个特征,需要降至 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 维,一般流程如下:

  1. 去中心化处理,即每个特征下的各个样本值减去各自均值
  2. 计算协方差矩阵,即 <math xmlns="http://www.w3.org/1998/Math/MathML"> 1 n X X T \frac{1}{n}XX^T </math>n1XXT
  3. 基于奇异值分解方法求协方差矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> 1 n X X T \frac{1}{n}XX^T </math>n1XXT 的特征值和特征向量(这里除不除以 <math xmlns="http://www.w3.org/1998/Math/MathML"> 1 n \frac{1}{n} </math>n1 对结果没有影响)
  4. 对右奇异矩阵从大到小排序,选择其中最大的 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个特征值
  5. 将选中的 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个特征向量分别作为列向量组成新的特征向量矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> P P </math>P
  6. 将原数据映射新空间中,即 <math xmlns="http://www.w3.org/1998/Math/MathML"> Y = P T X Y=P^TX </math>Y=PTX,其中 <math xmlns="http://www.w3.org/1998/Math/MathML"> Y Y </math>Y 为降维后的特征矩阵

在基于奇异值分解的PCA中,左奇异矩阵用于压缩行,而右奇异矩阵用于压缩列(特征),即使用SVD分解协方差的PCA可以实现两个方向的降维。

相比基于EVD的PCA,基于SVD的PCA的好处:一些SVD算法实现可以不求协方差矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> X X T XX^T </math>XXT,直接求出右奇异矩阵,大大提高了计算效率,降低了时间成本

PCA的理论拓展

我们基于最大方差理论来进行介绍。

在信号处理中认为信号具有较大的方差,噪声有较小的方差,信噪比就是信号与噪声的方差比,越大越好。例如上图中样本在 <math xmlns="http://www.w3.org/1998/Math/MathML"> u 1 u_1 </math>u1(红线)方向上的投影方差较大,在 <math xmlns="http://www.w3.org/1998/Math/MathML"> u 2 u_2 </math>u2(绿线)方向上的投影方差较小,那么可认为 <math xmlns="http://www.w3.org/1998/Math/MathML"> u 2 u_2 </math>u2 上的投影是由噪声引起的;因此认为特征的方差越大,对建模越有用,最好的 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 维特征是将 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 维样本数据降至 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 维后,每个特征的样本方差都很大。

假如说我要要从图中的 <math xmlns="http://www.w3.org/1998/Math/MathML"> u 1 u_1 </math>u1 和 <math xmlns="http://www.w3.org/1998/Math/MathML"> u 2 u_2 </math>u2 选一条来做投影,那按照最大方差理论肯定是选 <math xmlns="http://www.w3.org/1998/Math/MathML"> u 1 u_1 </math>u1 更好。

PCA使用的信息量衡量指标:样本方差,又称可解释性方差;一定程度上,某特征的方差越大,说明样本区分度越高,提供的信息越多;在PCA中,认为方差越大则特征所能表达的信息就越多。

重建原始数据 :例如将原始的 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 维数据降维至 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 维数据,我们降维的公式为 <math xmlns="http://www.w3.org/1998/Math/MathML"> Y = P T X Y=P^TX </math>Y=PTX,等式两边同时左乘矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> P P </math>P,得到逆转公式:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> X a p p r o x = P Y X_{approx}=PY </math>Xapprox=PY

  • <math xmlns="http://www.w3.org/1998/Math/MathML"> X a p p r o x X_{approx} </math>Xapprox:逆转后得到的矩阵
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> P P </math>P:右奇异矩阵中由前 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个特征值对应的特征向量作为列向量组成的矩阵
  • <math xmlns="http://www.w3.org/1998/Math/MathML"> Y Y </math>Y:降维后矩阵

平均平方映射误差 (Average Squared Projection Error) :原始数据 <math xmlns="http://www.w3.org/1998/Math/MathML"> x i x_i </math>xi 和映射值 <math xmlns="http://www.w3.org/1998/Math/MathML"> x a p p r o x ( i ) x_{approx(i)} </math>xapprox(i) 之间的差。即 <math xmlns="http://www.w3.org/1998/Math/MathML"> x i x_i </math>xi 和其在低维表面上的映射点之间的距离的平方;描述两向量之间的相关性。
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> A S P E = 1 N ∑ i = 1 N ∣ ∣ x i − x a p p r o x ( i ) ∣ ∣ 2 ASPE = \frac{1}{N}\sum^{N}{i=1}||x_i - x{approx(i)}||^2 </math>ASPE=N1i=1∑N∣∣xi−xapprox(i)∣∣2

数据的总方差 (Total Variation) :这些样本向量 <math xmlns="http://www.w3.org/1998/Math/MathML"> x i x_i </math>xi 与本身的内积(方差)的均值;描述数据本身的整体变异程度(平均来看,我的训练样本距离零向量多远)。
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> V a r = 1 N ∑ i = 1 N ∣ ∣ x i ∣ ∣ 2 Var = \frac{1}{N}\sum^N_{i=1}||x_i||^2 </math>Var=N1i=1∑N∣∣xi∣∣2

PCA所做的事是尽可能最小化平均平方映射误差,对于降至目标维度 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k,超参数 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 的选择可以依据下方的经验法则:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> 平均平方映射误差 数据的总方差 = 1 N ∑ i = 1 N ∣ ∣ x i − x a p p r o x ( i ) ∣ ∣ 2 1 N ∑ i = 1 N ∣ ∣ x i ∣ ∣ 2 ≤ 0.01 \frac{平均平方映射误差}{数据的总方差}=\frac{\frac{1}{N}\sum^{N}{i=1}||x_i - x{approx(i)}||^2}{\frac{1}{N}\sum^N_{i=1}||x_i||^2} \le 0.01 </math>数据的总方差平均平方映射误差=N1∑i=1N∣∣xi∣∣2N1∑i=1N∣∣xi−xapprox(i)∣∣2≤0.01

数据的总方差越大越好,平均平方映射误差越小越好,其比值越小越好,我们一般用以下式子:
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> ∑ i = 1 k S i i ∑ i = 1 N S i i ≥ 0.99 \frac{\sum_{i=1}^k S_{ii}}{\sum_{i=1}^N S_{ii}} \ge 0.99 </math>∑i=1NSii∑i=1kSii≥0.99

即协方差矩阵中选择的 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个特征值对应的特征向量的方差之和与原来全部特征向量的总方差的比值,若结果大于0.99,我们则认为降维后的矩阵保留了原来矩阵99%以上的信息。

补充说明

① 运算复杂:现在的编程语言在大型矩阵的运算上都不是很擅长,因此PCA往往需要占用很大的算力资源,计算较为缓慢。

② 主成分不具有可解释性:PCA是将原始特征进行压缩,降维后得到的主成分与原始特征不同,是通过某种变换组合起来的新特征。通常来说,在新的特征矩阵生成之前,我们不知道PCA建立了哪些新特征向量,新特征矩阵生成之后也不具有可读性。因此PCA一般不适用于探索特征和标签之间的关系的模型(如线性回归),因为无法解释的新特征和标签之间的关系不具有意义。

③ 基于SVD的PCA算法的优点:使用基于SVD的PCA算法可以跳过计算协方差矩阵这一步而直接得到右奇异矩阵,因此会大大减小计算量和时间成本。

④ 图像处理中的右奇异矩阵 :对于右奇异矩阵以及PCA的逆转公式,在处理图像时,我们在计算得到右奇异矩阵后,选择前 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个特征值对应的特征向量组成新矩阵 <math xmlns="http://www.w3.org/1998/Math/MathML"> V ( k , n ) V_{(k,n)} </math>V(k,n),当处理纯数值时,我们无法观察该矩阵的含义,但是若我们处理的是图像,由前 <math xmlns="http://www.w3.org/1998/Math/MathML"> k k </math>k 个特征值对应的特征向量组成的该矩阵表示的就是从原图像中提取的压缩后的主要信息,我们则可以通过可视化该空间矩阵,并将可视化结果与原图像进行对比以查看PCA主要从原图像中提取哪些信息。

⑤ 噪音过滤:PCA的逆转公式并不能真正完全将降维后的数据映射成和原来一模一样的特征矩阵,因为原来的信息在合并时就已经丢失了,降维并不是完全可逆的,可逆转是因为采用某种策略或算法基于降维后的数据对原来数据的预测;此外,降维的目的之一就是希望抛弃掉对模型带来负面影响的特征,带有效信息的特征的方差应该是远大于噪音的,所以相比噪音,有效的特征所带的信息应该不会在PCA过程中被大量抛弃,PCA的逆转能够在不恢复原始数据的情况下,将降维后的数据返回到原本的高维空间,因此这很容易联想到PCA的另一个应用-----降噪,利用这个性质我们可以实现数据噪音的过滤。

(文章可能有些地方的介绍不是很清晰,之后会花时间逐步对其中的一些知识进行补充和完善文章)

Reference

相关推荐
阿斯卡码1 小时前
jupyter添加、删除、查看内核
ide·python·jupyter
小于小于大橙子2 小时前
视觉SLAM数学基础
人工智能·数码相机·自动化·自动驾驶·几何学
埃菲尔铁塔_CV算法4 小时前
图像算法之 OCR 识别算法:原理与应用场景
图像处理·python·计算机视觉
封步宇AIGC4 小时前
量化交易系统开发-实时行情自动化交易-3.4.2.Okex行情交易数据
人工智能·python·机器学习·数据挖掘
封步宇AIGC4 小时前
量化交易系统开发-实时行情自动化交易-2.技术栈
人工智能·python·机器学习·数据挖掘
景鹤4 小时前
【算法】递归+回溯+剪枝:78.子集
算法·机器学习·剪枝
陌上阳光4 小时前
动手学深度学习68 Transformer
人工智能·深度学习·transformer
OpenI启智社区5 小时前
共筑开源技术新篇章 | 2024 CCF中国开源大会盛大开幕
人工智能·开源·ccf中国开源大会·大湾区
AI服务老曹5 小时前
建立更及时、更有效的安全生产优化提升策略的智慧油站开源了
大数据·人工智能·物联网·开源·音视频
YRr YRr5 小时前
PyTorch:torchvision中的dataset的使用
人工智能