0
我想要使用PCA,LDA和MDS來減少數據集的特徵。 但我想保留95%的差異。在scikit中使用PCA/LDA/MDS選擇最佳特徵數
我找不到一種方法來指示各個算法的公式中所需的差異。
if n_components == ‘mle’, Minka’s MLE is used to guess the dimension if 0 < n_components < 1, select the number of components such that the amount of variance that needs to be explained is greater than the percentage specified by n_components
但如何才能n_components等於「MLE」,並在同一時間的一小部分 - 一個段落PCA的API(sklearn.decomposition.PCA)似乎有關?
設置n_components ='mle'將特徵從40減少到39,這沒有幫助。