Getting started#
This guide will walk you through what you can do with Cog by using an example model.
Prerequisites#
- macOS or Linux. Cog works on macOS and Linux, but does not currently support Windows.
- Docker. Cog uses Docker to create a container for your model. You'll need to install Docker before you can run Cog.
Install Cog#
First, install Cog:
sudo curl -o /usr/local/bin/cog -L https://github.com/replicate/cog/releases/latest/download/cog_`uname -s`_`uname -m`
sudo chmod +x /usr/local/bin/cog
Create a project#
Let's make a directory to work in:
mkdir cog-quickstart
cd cog-quickstart
Run commands#
The simplest thing you can do with Cog is run a command inside a Docker environment.
The first thing you need to do is create a file called cog.yaml
:
build:
python_version: "3.8"
Then, you can run any command inside this environment. For example, to get a Python shell:
$ cog run python
✓ Building Docker image from cog.yaml... Successfully built 8f54020c8981
Running 'python' in Docker with the current directory mounted as a volume...
───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Python 3.8.10 (default, May 12 2021, 23:32:14)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
Inside this environment you can do anything – run a Jupyter notebook, your training script, your evaluation script, and so on.
Run predictions on a model#
Let's pretend we've trained a model. With Cog, we can define how to run predictions on it in a standard way, so other people can easily run predictions on it without having to hunt around for a prediction script.
First, run this to get some pre-trained model weights:
curl -O https://storage.googleapis.com/tensorflow/keras-applications/resnet/resnet50_weights_tf_dim_ordering_tf_kernels.h5
Then, we need to write some code to describe how predictions are run on the model. Save this to predict.py
:
import cog
from pathlib import Path
from tensorflow.keras.applications.resnet50 import ResNet50
from tensorflow.keras.preprocessing import image
from tensorflow.keras.applications.resnet50 import preprocess_input, decode_predictions
import numpy as np
class ResNetPredictor(cog.Predictor):
def setup(self):
"""Load the model into memory to make running multiple predictions efficient"""
self.model = ResNet50(weights='resnet50_weights_tf_dim_ordering_tf_kernels.h5')
# Define the arguments and types the model takes as input
@cog.input("input", type=Path, help="Image to classify")
def predict(self, input):
"""Run a single prediction on the model"""
# Preprocess the image
img = image.load_img(input, target_size=(224, 224))
x = image.img_to_array(img)
x = np.expand_dims(x, axis=0)
x = preprocess_input(x)
# Run the prediction
preds = self.model.predict(x)
# Return the top 3 predictions
return str(decode_predictions(preds, top=3)[0])
We also need to point Cog at this, and tell it what Python dependencies to install. Update cog.yaml
to look like this:
build:
python_version: "3.8"
python_packages:
- pillow==8.3.1
- tensorflow==2.5.0
predict: "predict.py:ResNetPredictor"
Let's grab an image to test the model with:
curl https://upload.wikimedia.org/wikipedia/commons/4/4d/Cat_November_2010-1a.jpg > input.jpg
Now, let's run the model using Cog:
$ cog predict -i @input.jpg
...
[
[
"n02123159",
"tiger_cat",
0.4874822497367859
],
[
"n02123045",
"tabby",
0.23169134557247162
],
[
"n02124075",
"Egyptian_cat",
0.09728282690048218
]
]
Looks like it worked!
Note: The first time you run cog predict
, the build process will be triggered to generate a Docker container that can run your model. The next time you run cog predict
the pre-built container will be used.
Build an image#
We can bake your model's code, the trained weights, and the Docker environment into a Docker image. This image serves predictions with an HTTP server, and can be deployed to anywhere that Docker runs to serve real-time predictions.
$ cog build -t resnet
Building Docker image...
Built resnet:latest
You can run this image with cog predict
by passing the image name as an argument:
$ cog predict resnet:latest -i @input.jpg
Or, you can run it with Docker directly, and it'll serve an HTTP server:
$ docker run -d -p 5000:5000 --gpus all resnet
$ curl http://localhost:5000/predict -X POST -F input=@image.png
As a shorthand, you can add the image name as an extra line in cog.yaml
:
image: "r8.im/replicate/resnet"
Once you've done this, you can use cog push
to build and push the image to a Docker registry:
$ cog push
Building r8.im/replicate/resnet...
Pushing r8.im/replicate/resnet...
Pushed!
The Docker image is now accessible to anyone or any system that has access to this Docker registry.
Next steps#
Those are the basics! Next, you might want to take a look at: