Table of contents
Learn how to package your own trained model using Cog and push it to Replicate.
By the end of this guide your model will have an interactive GUI and its own HTTP API. You'll also have the option to publicly share your model so anyone can try it.
By the end of this guide, your model will have its own interactive GUI and HTTP API.
docker info
in your terminal.Next you'll create a page for your model on Replicate, if you haven't already. Visit replicate.com/create to choose a name for your model, and specify whether it should be public or private.
Cog is an open source tool that makes it easy to put a machine learning model in a Docker container. Run the following commands to install it and set the correct permissions:
Refer to GitHub for more information about Cog and its full documentation.
To configure your project for use with Cog, you'll need to add two files to the directory containing your model:
cog.yaml
defines system requirements, Python package dependencies, etc.predict.py
describes the prediction interface for your modelUse the cog init
command to generate these files in your project:
The cog.yaml
file defines all of the different things that need to be installed for your model to run. You can think of it as a simple way of defining a Docker image.
For example:
This will generate a Docker image with Python 3.12 and PyTorch 2.3.1 installed and various other sensible best practices.
To use GPUs, add the gpu: true
option to the build
section of your cog.yaml
:
Cog will use the nvidia-docker base image and automatically figure out what versions of CUDA and cuDNN to use based on the version of Python, PyTorch, and Tensorflow that you're using.
To run a command inside this environment, prefix it with cog run
:
This is handy for ensuring a consistent environment for development or training.
With cog.yaml
, you can also install system packages and other things. Take a look at the full reference to explore what else you can do.
The next step is to update predict.py
to define the interface for running predictions on your model. The predict.py
generated by cog init
looks something like this:
Edit your predict.py
file and fill in the functions with your own model's setup and prediction code. You might need to import parts of your model from another file.
You should keep your model weights in the same directory as your predict.py
file, or a subdirectory underneath it, and load them directly off disk in your setup()
function, as shown in the example above. This will make it more efficient to load and easier to version because it will get copied into the Docker image that Cog produces.
You also need to define the inputs to your model as arguments to the predict()
function, as demonstrated above. For each argument, you need to annotate with a type. The supported types are:
str
: a stringint
: an integerfloat
: a floating point numberbool
: a booleancog.File
: a file-like object representing a filecog.Path
: a path to a file on diskYou can provide more information about the input with the Input()
function, as shown above. It takes these basic arguments:
description
: A description of what to pass to this input for users of the modeldefault
: A default value to set the input to. If this argument isn't passed, then the input is required. If it's explicitly set to None
, the input is optional.ge
: For int
or float
types, the value should be greater than or equal to this number.le
: For int
or float
types, the value should be less than or equal to this number.choices
: For str
or int
types, a list of possible values for this input.There are some more advanced options you can pass, too. For more details, refer to the prediction interface documentation.
Next, add the line predict: "predict.py:Predictor"
to your cog.yaml
, so it looks something like this:
That's it!
To test that this works, try running a prediction on the model:
To pass more inputs to the model, you can add more -i
options:
In this case it's just a number, not a file, so you don't need the @
prefix.
Now that you've configured your model for use with Cog and you have a corresponding model page on Replicate, it's time to publish it to Replicate's registry:
Your username and model name must match the values you set on Replicate.
cog.yaml
file. This allows you to run cog push
without specifying the image, and also makes your model page on Replicate more discoverable for folks reading your model's source code.Once you've pushed your model to Replicate it will be visible on the website, and you can use the web-based form to run predictions using your model.
To run predictions in the cloud from your code, you can use the Python client library.
Install it from pip:
Authenticate by setting your token in an environment variable:
Then, you can use the model from your Python code:
To pass a file as an input, use a file handle or URL:
URLs are more efficient if your file is already in the cloud somewhere, or it's a large file.
For more details about handling file outputs, see the Output files documentation.
You can also run your model with the raw HTTP API. Refer to the HTTP API reference for more details.