我使用weka进行基于文本的分类。我可以使用arff文件来提供weka分类工具,例如:
@relation example
@attribute 0 numeric
@attribute 1 numeric
@attribute 2 numeric
@attribute 3 numeric
@attribute 4 numeric
@attribute 5 numeric
@attribute 6 numeric
@attribute 7 {yes, no}
@data
{2 3, 3 4, 7 yes}
{4 2, 5 1, 7 no}
{2 1, 3 3, 6 2, 7 yes}
{4 3, 5 2, 7 no}
我想知道如何从数据库中检索数据时如何保存数据,直接提供weka而不将其重新格式化为arff。