Model Limitations in Generative AI

Review the following model requirements for the OCI Generative AI custom and base models to get the most out of your models.

Note

For key features of the pretrained base models, see Pretrained Foundational Models in Generative AI.

Matching Base Models to Clusters

Expand the following sections to review the dedicated AI cluster unit size and units that match each foundational model.

Units for Fine-Tuning Clusters
Creating a fine-tuning dedicated AI cluster automatically provisions a fixed number of units based on the base model: 8 units for cohere.command-r-16k and 2 units for other models. You can't change this number, but you can use the same cluster to fine-tune several models.
Units for Hosting Clusters
  • When creating a cluster, by default, one unit is created for the selected base model.
  • You can increase throughput or requests per minute (RPM) by adding model replicas. For example, 2 replicas require 2 units. You can add model replicas when creating or editing a hosting cluster.
  • Host up to 50 models on the same cluster, with the following restrictions:
    • Host up to 50 of the same version of a fine-tuned or a pretrained model on the same cluster.
    • Host different versions of the same base model, only if using T-FEW fine-tuning method for cohere.command and cohere.command-light base models.
Note

Instead of committing to dedicated AI clusters, you can pay as you go for on-demand inferencing. With on-demand inferencing you reach the foundational models either through the Console, in the playground or through the API. For on-demand features, see Calculating Cost in Generative AI.

Adding Endpoints to Hosting Clusters

To host a model for inference on a hosting dedicated AI cluster, you must create an endpoint for that model. Then, you can add either add a custom model or a pretrained foundational model to that endpoint.

About Endpoint Aliases and Stack Serving

A hosting dedicated AI cluster can have up to 50 endpoints. Use these endpoints for the following use cases:

Creating Endpoint Aliases

Create aliases with many endpoints. These 50 endpoints must either point to the same base model or the same version of a custom model. Creating many endpoints that point to the same model makes it easier to manage the endpoints, because you can use the endpoints for different users or different purposes.

Stack Serving

Host several versions of a custom model on one cluster. This applies to cohere.command and cohere.command-light models that are fine-tuned with the T-Few training method. Hosting various versions of a fine-tuned model can help you to assess the custom models for different use cases.

Tip

To increase the call volume supported by a hosting cluster, you can increase its instance count.

Expand the following sections to review the requirements for hosting models on the same cluster.

Training Data

Datasets for training custom models have the following requirements:

  • A maximum of one fine-tuning dataset is allowed per custom model. This dataset is randomly split to a 80:20 ratio for training and validating.
  • Each file must have at least 32 prompt/completion pair examples.
  • The file format is JSONL.
  • Each line in the JSONL file has the following format:

    {"prompt": "<a prompt>", "completion": "<expected response given the prompt>"}\n

  • The file must be stored in an OCI Object Storage bucket.

Learn about Training Data Requirements in Generative AI.

Input Data for Text Embeddings

Input data for creating text embeddings has the following requirements:

  • You can add sentences, phrases, or paragraphs for embeddings either one phrase at a time, or by uploading a file.
  • Only files with a .txt extension are allowed.
  • If you use an input file, each input sentence, phrase, or paragraph in the file must be separated with a newline character.
  • A maximum of 96 inputs are allowed for each run.
  • Each input must be less than 512 tokens. If an input is too long, select whether to cut off the start or the end of the text to fit within the token limit by setting the Truncate parameter to Start or End. If an input exceeds the 512 token limit and the Truncate parameter is set to None, you get an error message.

Learn about Creating text embeddings in OCI Generative AI.