九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
數(shù)據(jù)降維的幾種方法

數(shù)據(jù)數(shù)據(jù)預(yù),數(shù)據(jù)。數(shù)據(jù)數(shù)數(shù)據(jù)。,數(shù)據(jù)


數(shù)據(jù)




1. PCA



PCA數(shù)據(jù)轉(zhuǎn)標(biāo)統(tǒng),使標(biāo)統(tǒng)標(biāo)數(shù)據(jù)標(biāo)數(shù)據(jù),。標(biāo)

應(yīng)PCA數(shù)據(jù),數(shù)據(jù)數(shù)據(jù)。

from sklearn.decomposition import PCAfrom sklearn.datasets import load_irisimport matplotlib.pyplot as plt
# 數(shù)據(jù)data = load_iris()X = data.data
# 應(yīng)PCApca = PCA(n_components=2)  # 2X_pca = pca.fit_transform(X)
# 結(jié)plt.scatter(X_pca[:, 0], X_pca[:, 1])plt.xlabel('Principal Component 1')plt.ylabel('Principal Component 2')plt.title('PCA of Iris Dataset')plt.show()



2. LDA


LDA監(jiān)學(xué)習(xí)區(qū)。LDA。

應(yīng)務(wù)。

from sklearn.discriminant_analysis import LinearDiscriminantAnalysis as LDA
# LDA監(jiān)學(xué)習(xí),標(biāo)y = data.target
# 應(yīng)LDAlda = LDA(n_components=2)  # 2X_lda = lda.fit_transform(X, y)
# 結(jié)plt.scatter(X_lda[:, 0], X_lda[:, 1], c=y)plt.xlabel('LD1')plt.ylabel('LD2')plt.title('LDA of Iris Dataset')plt.show()



3. t-t-SNE


t-SNE數(shù)據(jù)術(shù),。

應(yīng)數(shù)據(jù),NLP領(lǐng)。

from sklearn.manifold import TSNE
# 應(yīng)t-SNEtsne = TSNE(n_components=2, random_state=0)X_tsne = tsne.fit_transform(X)
# 結(jié)plt.scatter(X_tsne[:, 0], X_tsne[:, 1], c=y)plt.xlabel('t-SNE feature 1')plt.ylabel('t-SNE feature 2')plt.title('t-SNE of Iris Dataset')plt.show()



4. MDS


MDS使。

應(yīng)數(shù)據(jù),。

from sklearn.manifold import MDSfrom sklearn.datasets import load_digitsimport matplotlib.pyplot as plt
# 數(shù)據(jù)digits = load_digits()X = digits.data
# 應(yīng)MDSmds = MDS(n_components=2)X_mds = mds.fit_transform(X)
# 結(jié)plt.scatter(X_mds[:, 0], X_mds[:, 1], c=digits.target, cmap='Spectral', alpha=0.5)plt.colorbar()plt.title('MDS on the Digits Dataset')plt.show()



5. LLE


LLE關(guān)數(shù)據(jù)。

應(yīng)數(shù)據(jù)結(jié)構(gòu)。

from sklearn.manifold import LocallyLinearEmbedding
# 應(yīng)LLElle = LocallyLinearEmbedding(n_components=2)X_lle = lle.fit_transform(X)
# 結(jié)plt.scatter(X_lle[:, 0], X_lle[:, 1], c=digits.target, cmap='Spectral', alpha=0.5)plt.colorbar()plt.title('LLE on the Digits Dataset')plt.show()


結(jié)

數(shù)據(jù)術(shù)。PCALDA數(shù)據(jù)t-SNE、MDS、LLE數(shù)據(jù)復(fù)。數(shù)據(jù)標(biāo)應(yīng)術(shù)數(shù)據(jù)。

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
第一章-有理數(shù)全章復(fù)習(xí)
精品解析:山東省泰安市泰山區(qū)泰安東岳中學(xué)2022-2023學(xué)年九年級上學(xué)期期末數(shù)學(xué)試題(原卷版)
通用離心泵機械密封泄漏原因分析與處理
船用分油機典型故障及其維修注意事項
_國內(nèi)硬度試方法標(biāo)準(zhǔn)號一覽表
12、“為何提了需求卻不被接受?”:資源取向的溝通
更多類似文章 >>
生活服務(wù)
熱點新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服