- AWS Machine Learning Blog
- Изучите возможности для Python на AWS
- AWS Documentation - Find user guides, developer guides, API references, tutorials, and more
- Hands-on Tutorials - Explore more tutorials from integrating intelligence to your apps to optimizing your models
Ознакомьтесь с практическими учебными пособиями и обучающими видеоматериалами по работе с сервисом AWS Начните работу и запустите первую рабочую нагрузку с помощью простых пошаговых учебных пособий
- Coursera
- Edx
| Title | Description |
|---|---|
| Amazon SageMaker |
|
| AWS Lambda | |
| Amazon Simple Storage Service Documentation | |
| AWS Elastic Beanstalk | |
| Amazon Elastic File System | |
| Amazon Elastic Container Service | |
| AWS DeepRacer | Developers of all skill levels can get hands on with machine learning through a cloud based 3D racing simulator, fully autonomous 1/18th scale race car driven by reinforcement learning, and global racing league. |
| Amazon Mechanical Turk | Amazon Mechanical Turk (MTurk) is a crowdsourcing marketplace that makes it easier for individuals and businesses to outsource their processes and jobs to a distributed workforce who can perform these tasks virtually. This could include anything from conducting simple data validation and research to more subjective tasks like survey participation, content moderation, and more. MTurk enables companies to harness the collective intelligence, skills, and insights from a global workforce to streamline business processes, augment data collection and analysis, and accelerate machine learning development. |
| Title | Description |
|---|---|
| Amazon SageMaker Script Mode Examples | Amazon SageMaker examples for prebuilt framework mode containers, a.k.a. Script Mode, and more (BYO containers and models etc.) |
| amazon-sagemaker-immersion-day | Amazon SageMaker Immersion Day help customers and partners to provide end to end understanding of building ML use cases from feature engineering to understanding various in-built algorithm and Train , Tune and Deploy the ML model in production like scenario. It guides you to bring your own model and perform on-premise ML workload Lift-and-Shift to Amazon SageMaker platform. It further demonstrate advance concept like Model Debugging , Model Monitoring and AutoML and guide to evaluate your machine leaning workload through AWS ML Well-architect lens. |
Pandas on AWS
- AWS Data Wrangler Documentation
- AWS Data Wrangler on
GitHub
!pip install awswrangler❗Note : to make it work, the
awswranglerhas to be imported first
import awswrangler as wr
wr.s3.to_csv(
df=df_new,
path='s3://'
)- Building Scikit-Learn For AWS Lambda
- Error:
No module named 'sklearn.__check_build._check_build' - Search:
- Using Scikit-Learn In AWS Lambda
- Error with scikit-learn module in AWS Lambda
- Building Scikit-Learn For AWS Lambda
- sklearn and pandas in AWS Lambda
- Установка sklearn на AWS deeplearning AMI
- sklearn not working in aws lambda function. Deployment package issue
- Error:
- Возможности AWS Lambda
- AWS Machine Learning Blog
- AWS Documentation
- Towards Data Science / Medium
- How to deploy a Machine Learning model on AWS Lambda
- Deploy Machine Learning Models On AWS Lambda
- Serverless Machine Learning Engineering Project On AWS Lambda
- Deploying Machine Learning Model to AWS Lambda using Serverless
- Containerized ML deployment with AWS Lambda
- How to Deploy ML models with AWS Lambda
- How to Build an AWS Lambda for Data Science
To create an image from an AWS base image for Lambda
-
On your local machine, create a project directory for your new function.
-
Create a directory named app in in the project directory, and then add your function handler code to the app directory.
-
Use a text editor to create a new Dockerfile.
-
Build your Docker image with the
docker buildcommand. Enter a name for the image. The following example names the imagehello-world.docker build -t hello-world . docker build -t hello-world:latest -f Dockerfile -m 12g . -
Start the Docker image with the
docker runcommand. For this example, enterhello-worldas the image name.docker run -p 9000:8080 hello-world -
(Optional) Test your application locally using the runtime interface emulator. From a new terminal window, post an event to the following endpoint using a curl command:
curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{}' -
Authenticate the Docker CLI to your Amazon ECR registry.
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin 123456789012.dkr.ecr.us-east-1.amazonaws.com -
Create a repository in Amazon ECR using the create-repository command.
aws ecr create-repository --repository-name hello-world --image-scanning-configuration scanOnPush=true --image-tag-mutability MUTABLE -
Tag your image to match your repository name.
docker tag hello-world:latest 123456789012.dkr.ecr.us-east-1.amazonaws.com/hello-world:latest -
Deploy the image to Amazon ECR using the
docker pushcommand.docker push 123456789012.dkr.ecr.us-east-1.amazonaws.com/hello-world:latest
- Creating Lambda container images
- Updating the function code (console) -> Creating Lambda functions defined as container images
| Title | Description |
|---|---|
| Boto3 | You use the AWS SDK for Python (Boto3) to create, configure, and manage AWS services, such as Amazon Elastic Compute Cloud (Amazon EC2) and Amazon Simple Storage Service (Amazon S3). The SDK provides an object-oriented API as well as low-level access to AWS services. |