Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.predibase.com/llms.txt

Use this file to discover all available pages before exploring further.

The ClassificationDeploymentConfig takes in all the same parameters as the DeploymentConfig. The speculator parameter is ignored for classification.
You must use a ClassificationDeploymentConfig to create a deployment with which classification adapters will be used. You *cannot run classification on a text generation deployment, or run text generation on a classification deployment.

Example Usage

from predibase import ClassificationDeploymentConfig

config = ClassificationDeploymentConfig(
    base_model="qwen3-8b",
    accelerator="a100_80gb_100",
    min_replicas=0,
    max_replicas=1
)