Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sklearn on aws lambda

I want to use sklearn on AWS lambda. sklearn has dependencies on scipy(173MB) and numpy(75MB). The combined size of all these packages exceeds AWS Lambda disk space limit of 256 MB.

How can I use AWS lambda to use sklearn?

like image 775
2ank3th Avatar asked Jun 13 '17 21:06

2ank3th


1 Answers

This guy gets it down to 40MB, though I have not tried it myself yet.

The relevant Github repo.

like image 187
Entropic Thunder Avatar answered Oct 10 '22 09:10

Entropic Thunder