gpt4 book ai didi

machine-learning - 将 prop 文件转换为 arff 文件

转载 作者:行者123 更新时间:2023-11-30 09:57:12 27 4
gpt4 key购买 nike

我正在使用Staford classifier用于 NLP 相关任务。但我还需要尝试其他机器学习算法。所以我想将prop文件转换为arff或打印特征然后转换为arff文件。一个主要问题是分类器工具输出的特征是稀疏表示(仅显示存在的特征)。如何实现这一目标?

最佳答案

有一个sparse ARFF 的格式。它与非稀疏 ARFF 文件非常相似,但值为 0 的数据不会被显式表示。

Sparse ARFF files have the same header (i.e @relation and @attribute tags) but the data section is different. Instead of representing each value in order, like this:

@data
0, X, 0, Y, "class A"
0, 0, W, 0, "class B"

the non-zero attributes are explicitly identified by attribute number and their value stated, like this:

@data
{1 X, 3 Y, 4 "class A"}
{2 W, 4 "class B"}

注意this关于arff稀疏格式的问题。

关于machine-learning - 将 prop 文件转换为 arff 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21242050/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com