Package 

Interface EdgeModel

    • Method Detail

      • run

         abstract Recognitions run(List<Object> inputs)

        Run inference on the edge models. Pack the input data in a list and pass it as argument. The input data depends on the type of model. If for example a vision based model then input data will be a bitmap image. So for that we will pass in listOf(bitmap).

        Parameters:
        inputs - List of inputs accepted by the model.