def main():
# Load the dataset
data = datasets.load_iris()
X = normalize(data.data)
y = data.target
# Project the data onto the 2 primary components
multi_class_lda = MultiClassLDA()
multi_class_lda.plot_in_2d(X, y, title="LDA")
multi_class_lda.py 文件源码
python
阅读 21
收藏 0
点赞 0
评论 0
评论列表
文章目录