scikit-learn-lambda
scikit-learn-lambda copied to clipboard
Toolkit for deploying scikit-learn models for realtime inference on AWS Lambda
As AWS Lambda currently supports python 3.9 runtime, Is there any possibilites that this layer would support layer for python 3.9?
Hello @yoavz, Can we please host the zip in Asia pacific region. AWS does not allow you to use layer from another region. Thanks
The latest scikit-learn layer available in the [layers csv file](https://github.com/model-zoo/scikit-learn-lambda/blob/master/layers.csv) is `0.23.1`. Although there are a few workarounds, most M1 Mac users (myself included) cannot install this or previous versions....
I had an error when I try to create a layer in sa-east-1 with scikit-learn, everything is ok, but when I try to run my lambda function but it raises...
Getting this error when using arn:aws:lambda:us-west-2:446751924810:layer:python-3-8-scikit-learn-0-23-1:4 ARN for us-west-2. Would you please be able to help? Thanks
Hi My team build our own layer python-3-8-scikit-learn-0-23-1 for region ap-southeast-1 with arn : "arn:aws:lambda:ap-southeast-1:967561843261:layer:python-3-8-scikit-learn-0-23-1" , but It doesn' work. Could you check this arn ? If possible, could you...
Add support for deploying with https://aws.amazon.com/serverless/sam/. I believe all that is required is a `template.yaml` file that should look something like: ``` AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: ... Resources: ScikitLearnFunction:...