0

AWS Lambda limits the size of code and dependencies to 250mb and so installing OpenVINO is not viable. However, OpenVINO offers a Deployment Manager which creates a deployment package by assembling the model, IR files, your application, and associated dependencies into a runtime package for your target device.

The problem is the Deployment Package does not support Python whereas AWS Lambda does not support C++. Is there any workaround for this? Is it possible to deploy OpenVINO models on AWS Lambda?

Sharan
  • 691
  • 1
  • 7
  • 16

1 Answers1

0

AWS Lambda does not support C++

AWS does support C++, just not out of the box from the console:

AWS is releasing a reference implementation of a C++ runtime for Lambda. This C++ runtime brings the simplicity and expressiveness of interpreted languages while maintaining the superiority of C++ performance and low memory footprint.

Thus one way to overcome your problem would be to use the reference example of C++ lambda provided by AWS, and modify it to your needs.

Marcin
  • 215,873
  • 14
  • 235
  • 294