分类树工具和与网站的集成

Classification tree tool and integration with a web site

一般性问题。我在他们的工具中使用了 Weka 分类器模型功能。但是有没有办法“调用 Weka”并从网站获得模型响应? 它是 Weka 并不重要,但我想根据来自网站的 json 实现一些简单的分类。 谢谢。

你可以写一个REST webservice in Java which loads your model and makes predictions using data it receives, sending back the predictions in a suitable format. There are a number of frameworks for writing such webservices (e.g., JAX-RS).

关于使用 Weka API,查看 Use Weka in your Java code 文章。