ARM-software / armnn

Arm NN ML Software. The code here is a read-only mirror of https://review.mlplatform.org/admin/repos/ml/armnn
https://developer.arm.com/products/processors/machine-learning/arm-nn
MIT License
1.14k stars 307 forks source link

Problem with multiple input Model using armnn #665

Closed xiaotongnii closed 1 year ago

xiaotongnii commented 2 years ago

I want to deply tflite model with multiple input on ARMNN22.02, ARMNN whether support multiple input Model ,how to construct multiple input programne?

catcor01 commented 1 year ago

Hello @Shelton-N,

ArmNN will support a multiple input tflite model. We recommend using our TFLite Delegate which will parse your tflite model to run using ArmNN. To build the delegate see here. To run your tflite model with the delegate using Python see here. If you have any other requirement or problems, please let me know and am happy to help out.

Kind Regards, Cathal.

xiaotongnii commented 1 year ago

Hello @catcor01 ,Sucessfully, can use ARMNN to deploy tflite model which multiple input and multiple output . thanks.