1

我有一个用 PMML 3.2 编写的 PMML 模型,我需要调试代码才能正确运行它。

我看过 R 中的partykit,但我想了解是否可以将 XML PMML 文件导入 Python 并检查它的格式是否适合 PMML 4.2?

我没有创建原始模型,但需要正确调试语法并希望在开源工具中进行。

像 Augustus 等包似乎能够轻松生成 PMML,但我需要导入此模型以检查其语法,然后将其转换/升级到 4.2

将 PMML 中的 SVM 模型导入 Java 或 Python?thread 是一个好的开始,但它只关注 Java 和 adapa

4

1 回答 1

1

First, you can download the PMML specification here and use any online tool, like this, to validate your PMML file.

You can find the list of PMML producers and consumers in this link. You may use KNIME, an open source drag & drop application which supports Python, R, and Java, to import your model and check if it is recognized by KNIME.

You may also use ADAPA to further examine your PMML file to see if it contains a valid model. ADAPA is available on AWS (Amazon Web Services) as SaaS but you can use it for free for 14 days, I believe. It's the most comprehensive PMML validator, convertor, and executer.

于 2016-05-11T03:41:10.743 回答