Is it possible for Encog or Neuroph to run on Android?

I am writing an Android application that will perform image recognition and analysis. I heard that the neural network is one of the best ways to recognize images and tried to port the library that Mike O'Neill used on CodeProject in his outstanding handwriting recognition application for Win32. However, I was recently told about Encog and Neuroph, two outstanding Java libraries for neural networks / pattern recognition. I only need the work of a neural network, I will write my own set of pattern recognition around another library of neural networks. Does anyone know if Encog or Neuroph can run on Android, preferably Encog?

EDIT: I already studied this, I wonder if anyone can actually confirm the library is working.

+6
source share
1 answer

I can confirm that Encog 3.1.0 works on android 4.1.2. For neural networks, I train on my development machine, and then unload the network to disk and copy it to the android / project / asset directory.

see org.encog.persist.EncogDirectoryPersistence for serialization.

+4
source

Source: https://habr.com/ru/post/904875/


All Articles