我想从Java执行Rapidminer进程,以便使用输出ExampleSet(Process Result)进行后续操作(使用Java)。
我使用下面的代码管理流程执行,但我不知道如何获取流程结果示例集。
理想情况下,我想让任何示例集独立于变量,但如果您需要预先生成元数据,则必须是。
package com.companyname.rm;
import com.rapidminer.Process;
import com.rapidminer.RapidMiner;
import com.rapidminer.operator.OperatorException;
import com.rapidminer.tools.XMLException;
import java.io.File;
import java.io.IOException;
public class RunProcess {
public static void main(String[] args) {
try {
RapidMiner.setExecutionMode(RapidMiner.ExecutionMode.COMMAND_LINE);
RapidMiner.init();
Process process = new Process(new File("//my_path/..../test_JAVA.rmp"));
process.run();
} catch (IOException | XMLException | OperatorException ex) {
ex.printStackTrace();
}
}
}
答案 0 :(得分:1)
要获取进程的ExampleSet,需要添加
IOContainer ioResult = process.run();
摘自http://allinoneat.blogspot.de/2013/04/integrate-rapidminer-wtih-java.html
的简短示例IOContainer ioResult = process.run();
if (ioResult.getElementAt(0) instanceof ExampleSet) {
ExampleSet resultSet = (ExampleSet) ioResult.getElementAt(0);
for (Example example : resultSet) {
Iterator<Attribute> allAtts = example.getAttributes().allAttributes();
while (allAtts.hasNext()) {
Attribute a = allAtts.next();
if (a.isNumerical()) {
double value = example.getValue(a);
System.out.print(value + " ");
} else {
String value = example.getValueAsString(a);
System.out.print(value + " ");
}
}
System.out.println("\n");
}
}
答案 1 :(得分:0)
选项1: 单击上下文,将进程输出保存到文件。 然后,从文件中读取。
选项2:
使用WriteAsText保存您想要的内容。然后从文件中读取。
我只是将rapidminer作为脚本运行: