I want to ship multiple custom model with the app. All the models have same purpose. I don't want to host it as of now.
FirebaseLocalModelSource localModelSource =
new FirebaseLocalModelSource.Builder(LOCAL_MODEL_NAME)
.setAssetFilePath(LOCAL_MODEL_PATH).build();
// add multiple
FirebaseModelManager manager = FirebaseModelManager.getInstance();
manager.registerLocalModelSource(localModelSource);
// access multiple
- How could I access multiple model?
- Even if I host it, then how could I access different custom model for the same purpose?
If the above could not be achieved using mlkit, is there any other approach to combine the result of all the model?