Issues running gpt-2 with provided Docker image

After following the instructions to build the gpt-2 Docker image here, I started up a bash shell into the container: docker runĀ  -it gpt-2 bash And then ran: python3 src/generate_unconditional_samples.py | tee /tmp/samples This failed with this error: AttributeError: module ‘tensorflow’ has no attribute ‘sort’ A post here says to upgrade to Tensorflow 1.14.0 in …

Summary: What you need to deploy a Docker container to AWS ECS Fargate

In my previous post I walked through a couple of tutorials to deploy a test Docker container to AWS ECS Fargate. As a summary, here’s the various parts that you need to have in place to deploy a Docker container using Fargate: A Docker image, deployed to a Docker repository, e.g. either Docker Hub, or …

Deploying Docker containers to AWS ECS Fargate

The interesting feature of AWS ECS Fargate is that it’s ‘serverless for containers’. Serverless broadly means you don’t need to be concerned with the provisioning and maintenance of the servers or compute that are running your code. With Fargate, you don’t have to provision compute for your Docker Containers, AWS manages the compute for you. …