1/10
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Frobenius Norm
∣∣A∣∣F=i=1∑nj=1∑m∣aij∣2=tr(A⊤A)=i=1∑rσi2
Spectral Norm
∣∣A∣∣2=λmax(AHA)=σmax(A)
Nuclear Norm
∣∣A∣∣∗=i=1∑rσi
Other matrix norms (1-norm and ∞−norm)
1-norm (Maximum absolute columns sum):
∣∣A∣∣1=jmaxi=1∑n∣aij∣
∞−norm (Maximum absolute row sum):
∣∣A∣∣∞=imaxj=1∑m∣aij∣
Eckart-Young Theorem
The Eckart-Young theorem is fundamental to many low-rank approximation problems.
It states that by pruning the singular values below σk in the SVD representation, we get an optimal rank k approximation of a matrix.
This means that approximations for any k can directly be read-off the SVD.
Given A∈Rn×m with SVD A=UΣV⊤. Then for all 1≤k≤min{n,m} we have
Ak:=Udiag(σ1,…,σk)V⊤∈arg min{∣∣A−B∣∣F:rank(B)≤k}
Convex Envelope of a function
The convex envelope of a function f:R→R is the largest convex function g for which g≤f on R.
Convex Envelope of the rank function (rank is NOT convex!)
Theorem (Fazel et al)
The convex envelope of rank(A) on R={∣∣A∣∣2≤1} is ∣∣A∣∣∗
Sigmoid Activation Function
Sigmoid
σ(z)=1+e−z1
Derivative
σ’(z)=σ(x)(1−σ(x))
Tanh Activation Function
Tanh
tanh(z)=ez+e−zez−e−z
Derivative
tanh′(z)=1−tanh2(z)
ReLU Activation function
ReLU
ReLU(z)=max(0,z)
Derivative
ReLU′(z)={10amp;if zamp;if z≤0gt;0