For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DASHBOARDPLAYGROUNDDOCSCOMMUNITYLOG IN
Guides and conceptsAPI ReferenceRelease NotesLLMUCookbooks
Guides and conceptsAPI ReferenceRelease NotesLLMUCookbooks
  • Get Started
    • Introduction
    • Installation
    • Creating a client
    • Playground
    • FAQs
  • Models
    • An Overview of Cohere's Models
    • Embed
    • Rerank
    • Aya
  • Text Generation
    • Introduction to Text Generation at Cohere
    • Using the Chat API
    • Streaming Responses
    • Structured Outputs
    • Predictable Outputs
    • Advanced Generation Parameters
    • Retrieval Augmented Generation (RAG)
    • Tool Use
    • Tokens and Tokenizers
    • Migrating from the Generate API to the Chat API
    • Summarizing Text
    • Safety Modes
  • Embeddings (Vectors, Search, Retrieval)
    • Introduction to Embeddings at Cohere
    • Semantic Search with Embeddings
    • Multimodal Embeddings
    • Batch Embedding Jobs
  • Going to Production
    • API Keys and Rate Limits
    • Going Live
    • Deprecations
    • How Does Cohere's Pricing Work?
  • Integrations
    • Integrating Embedding Models with Other Tools
    • Cohere and LangChain
    • LlamaIndex and Cohere
  • Deployment Options
    • Overview
    • SDK Compatibility
  • Tutorials
    • Cookbooks
    • LLM University
    • Build Things with Cohere!
  • Responsible Use
    • Security
    • Usage Policy
    • Command A Technical Report
    • Command R and Command R+ Model Card
  • Cohere Labs
    • Cohere Labs Acceptable Use Policy
  • More Resources
    • Cohere Toolkit
    • Datasets
    • Improve Cohere Docs
    • Introduction
LogoLogodocs
DASHBOARDPLAYGROUNDDOCSCOMMUNITYLOG IN
On this page
  • Why Fine-tune?
  • How to Create Fine-tuned Models
  • Types of Fine-tuning
  • Fine-Tuning Directory
  • Fine-tuning for Chat
  • Fine-tuning for Classify
  • Fine-tuning for Rerank

Introduction to Fine-Tuning with Cohere Models

Was this page helpful?
Edit this page
Previous
Built with

Cohere’s fine-tuning feature was deprecated on September 15, 2025

Our ready-to-use large language models, such as Command R, as well as Command R+, are very good at producing responses to natural language prompts. However, there are many cases in which getting the best model performance requires performing an additional round of training on custom user data. Creating a custom model using this process is called fine-tuning.

Why Fine-tune?

Fine-tuning is recommended when you want to teach the model a new task, or leverage your company’s unique knowledge base. Fine-tuning models is also helpful for generating a specific writing style or format.

If you are aiming to use a language model to draft responses to customer-support inquiries, for example, using a model fine-tuned on old conversations with customers will likely improve the quality of the output.

Note that there might be pricing differences when using fine-tuned models. You can use our Pricing Calculator to estimate the costs.

How to Create Fine-tuned Models

Cohere offers two methods of creating fine-tuned models: via the Cohere Dashboard, via the Fine-tuning API, and via the Python SDK. The fine-tuning process generally unfolds in four main stages:

  • Preparing and uploading training data.
  • Training the new Fine-tuned model.
  • Evaluating the Fine-tuned model (and possibly repeating the training).
  • Deploying the Fine-tuned model.

Once you Fine-tune a model, it will start appearing in the model selection dropdown on the Playground, and can be used in API calls.

Types of Fine-tuning

Models are fine-tuned for use in specific Cohere APIs. To be compatible with the Chat API, for example, a model needs to be fine-tuned on a dataset of conversations. APIs that support fine-tuned models are:

  • Chat
  • Classify
  • Rerank

Fine-Tuning Directory

For your convenience, we’ve collected all the URLs relevant to fine-tuning Cohere models below. Think of this as being like a fine-tuning table of contents.

Fine-tuning for Chat

  • Preparing the Chat Data
  • Starting the Chat Training
  • Understanding the Chat Results
  • Improving the Chat Results

Fine-tuning for Classify

  • Preparing the Classify Data
  • Starting the Classify Training
  • Understanding the Classify Results
  • Improving the Classify Results

Fine-tuning for Rerank

  • Preparing the Rerank Data
  • Starting the Rerank Training
  • Understanding the Rerank Results
  • Improving the Rerank Results