适用于Android的机器学习库

时间:2017-04-27 05:33:53

标签: android machine-learning nlp artificial-intelligence text-mining

我正在尝试为我的Android应用程序构建一个小型文本挖掘工具。我正在检查机器学习库,这将允许我进行聚类,分类等。

Android是否有任何机器学习库?我遇到了tensorflow但我需要更多访问常见的ML函数。

2 个答案:

答案 0 :(得分:2)

你可以尝试这些weka的端口用于android(他们不使用最新的weka版本,但它可能足以满足你的需求):

https://github.com/rjmarsan/Weka-for-Android

https://github.com/andrecamara/weka-android

答案 1 :(得分:1)

TensorFlow确实可以让您访问大量的机器学习功能 使用tf.contrib.learn,您甚至不必编写优化程序的代码
您可以使用库中已包含的优化程序 您只需要以适当的方式预处理数据,然后将其提供给神经网络。

以下是TensorFlow for Android提供的示例的链接:

https://github.com/tensorflow/tensorflow/tree/master/tensorflow/examples/android