I am trying to deploy a pretrained model on a android application . Now, the need is to retrain the model with the data captured locally. Specifically what is happening is, There is a pretrained dnn model which predicts the quality of a video seeing the bandwidth. The neural network was trained on some data which had the bandwidth and the corresponding video quality. Now that model has to be deployed on device for retraining on the new data. This new data is already captured via a mobile application and is stored in required format(csv) . First i thought of using tflite but it does not support on device retraining. Now i am trying to use DL4J but could not understand how to do it. If it possible to use DL4J in this case then how can i do it. If not, then is there a another approach.
ps. I have tried my best to write the problem statement clearly. Pardon me, if u find it difficult to understand. Please comment what u have not understood, i will clear it.