@altavir I want to do transfer learning with tflite on android. I am building a small ml framework for kotlin to abstract away the tflite specific codes, something very similar to tfx (tensorflow extended) in python. Currently, I started to write some code to prototype. Thought if there is already a light-weighted dataflow or pipeline engine, then i can just reuse and integrate it into my android kotlin mlflow framework at first. Most case a dataflow or pipeline engine has already some orchestration mechanism that i can reuse and write some task container to trigger data processing or training task.
This kind of pipeline engine mustn’t contain its own DSL, a small in-memory scheduler can be just fine. Maybe also with some annotation mechanism so that i can extend tasks for android. Otherwise I will need to write all the stuff on my own. 🙂