The cost of your deployment is based on the hardware you select and the amount of time it executes for. Essentially, every time we run your code, or you specify that a machine should be running—we charge you. GPU, CPU, and Memory usage are all charged per second while persistent storage is charged per GB per month. You can view the pricing of various compute on our pricing page. When you deploy a model, there are two processes we charge you for:Documentation Index
Fetch the complete documentation index at: https://cerebrium-assembly-ai.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
-
We charge you for the build process where we set up your app environment. In this step, we set up a Python environment according to your parameters before downloading and installing the required apt packages, Conda and Python packages, as well as any model files you require.
You are only charged for a build if we need to rebuild your environment, i.e., you have run a
buildordeploycommand and have changed your requirements, parameters or code. Note that we cache each of the steps in a build so subsequent builds will cost substantially less than the first. - The app runtime. This is the amount of time it takes your code to run from start to finish on each request. There are 3 costs to consider here:
- Cold-start: This is the amount of time it takes to spin up a server(s), load your environment, connect storage, etc. This is part of the Cerebrium service and something we are working on every day to get as low as possible. We do not charge you for this!
- Model initialization: This part of your code is outside of your function and only runs when your app incurs a cold start. You are charged for the amount of time it takes for this code to run. Typically this is loading a model into GPU RAM, loading python packages etc.
- Function runtime: This is the code stored in your function and runs every time a request hits your endpoint
- 24 GB VRam (A10): $0.000306 per second
- 2 CPU cores: 2 * $0.00000655 per second
- 20GB Memory: 20 * $0.00000222 per second