ML Zoomcamp 2023 – Serverless – Part 5

Preparing a Docker image In this part we want to package everything into a docker container. We use an AWS base image for our Dockerfile. You can find the public images from aws here (public.ecr.aws –> gallery.ecr.aws). In the gallery you can search for “python lambda” and we can find “python by AWS Lambda”. ThenContinue reading “ML Zoomcamp 2023 – Serverless – Part 5”

ML Zoomcamp 2023 – Deploying Machine Learning Models– Part 6

Environment management: Docker Why do we need Docker? Docker is a powerful tool that addresses many challenges in modern software development and deployment. It allows us to isolate entire applications from the rest of the system’s processes and dependencies, providing a level of encapsulation and portability that is invaluable in today’s computing landscape. One ofContinue reading “ML Zoomcamp 2023 – Deploying Machine Learning Models– Part 6”