You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As we know the relation between these two matrices is scatter(X) = X.T.dot(X) covariance(X) = X.T.dot(X) / N
for a given X or X = X - mean(X) and N = |X|
First of all thanks for the great reference, you've been created and it performs well in its current format.
But, Is it acceptable to use covariance matrices instead of scatter matrices in LDA?
shouldn't it use scatter matrices?
ML-From-Scratch/mlfromscratch/supervised_learning/linear_discriminant_analysis.py
Lines 24 to 25 in a2806c6
As we know the relation between these two matrices is
scatter(X) = X.T.dot(X)
covariance(X) = X.T.dot(X) / N
for a given X or
X = X - mean(X)
andN = |X|
reference
The text was updated successfully, but these errors were encountered: