Dataset API

The Dataset API makes it easy to upload, download, and manage the large datasets that you need for fine-tuning models. You can find more information in the official Dataset API specs.

📘

💡 The examples in this guide refer to the Cohere Python SDK, which comes with some convenience methods, but most of the functionality can be accessed in any language using the HTTP API.

Overview

In this initial section, we'll cover some limitations in the Dataset API, and discuss Cohere's policy on data retention.

File Size Limits

There are certain limits to the files you can upload through the Dataset API, specifically:

  • A Dataset can be as large as 1.5GB
  • Organizations have up to 10GB of storage across all their users

Retention

You should also be aware of how Cohere handles data retention. This is the most important context:

  • Datasets get deleted 30 days after creation
  • You can also manually delete a dataset using co.delete_dataset

Getting Set up

First, let's install the SDK (the examples below are in Python, Typescript, and Go):

pip install cohere
npm i -s cohere-ai
go get github.com/cohere-ai/cohere-go/v2

Import dependencies and set up the Cohere client.

import cohere
co = cohere.Client('Your API key')
import { CohereClient } from "cohere-ai";

const cohere = new CohereClient({
    token: "YOUR_API_KEY",
});

(async () => {
    const prediction = await cohere.generate({
        prompt: "hello",
        maxTokens: 10,
    });
    
    console.log("Received prediction", prediction);
})();
import cohereclient "github.com/cohere-ai/cohere-go/v2/client"

client := cohereclient.NewClient(cohereclient.WithToken("<YOUR_AUTH_TOKEN>"))

(All the rest of the examples on this page will be in Python, but you can find more detailed instructions for getting set up by checking out the Github repositories for Python, Typescript, and Go.)

Dataset Creation

Datasets are created by uploading files, specifying both a name for the dataset and the dataset_type.

The file extension and file contents have to match the requirements for the selected dataset_type. See the table below to learn more about the supported dataset types.

The dataset name is useful when browsing the datasets you've uploaded. In addition to its name, each dataset will also be assigned a unique id when it's created.

Here is an example code snippet illustrating the process of creating a dataset, with both the name and the dataset_type specified.

my_dataset = co.datasets.create(
	name="shakespeare",
	data=open("./shakespeare.csv", "rb"),
	dataset_type="prompt-completion-finetune-input")

print(my_dataset.id)

Dataset Validation

Whenever a dataset is created, the data is validated asynchronously against the rules for the specified dataset_type . This validation is kicked off automatically on the backend, and must be completed before a dataset can be used with other endpoints.

Here's a code snippet showing how to check the validation status of a dataset you've created.

ds = co.wait(my_dataset)
print(ds.validation_status)

To help you interpret the results, here's a table specifying all the possible API error messages and what they mean:

Error CodeEndpointError ExplanationActions Required
400CreateThe name parameter must be set.Set a name parameter.
400CreateThe type parameter must be set.Set a type parameter.
400CreateThe dataset type is invalid.Set the type parameter to a supported type.
400CreateYou have exceeded capacity.Delete unused datasets to free up space.
400CreateYou have used an invalid csv delimiter.The csv delimiter must be one character long.
400CreateThe name must be less than 50 characters long.Shorten your dataset name.
400CreateYou used an invalid parameter for part: %v use file or an evaluation file.The file parameters must be a named file or an evaluation file.
499CreateThe upload connection was closed.Don't cancel the upload request.
ValidationThe required field {} was not fund in the dataset (line: {})You are missing a required field, which must be supplied.
ValidationCustom validation rules per typeThere should be enough context in the validation error message to fix the dataset.
Validationcsv files must have a header with the required fields: [{}, {}, ...].Fix your csv file to have a 'headers' row with the required field names.
404GetThe dataset with id '{}' was not found.Make sure you're passing in the right id.

Dataset Metadata Preservation

The Dataset API will preserve metadata if specified at time of upload. During the create dataset step, you can specify either keep_fields or optional_fields which are a list of strings which correspond to the field of the metadata you’d like to preserve. keep_fields is more restrictive, where if the field is missing from an entry, the dataset will fail validation whereas optional_fields will skip empty fields and validation will still pass.

Sample Dataset Input Format

{"wiki_id": 69407798, "url": "https://en.wikipedia.org/wiki?curid=69407798", "views": 5674.4492597435465, "langs": 38, "title": "Deaths in 2022", "text": "The following notable deaths occurred in 2022. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:", "paragraph_id": 0, "id": 0}
{"wiki_id": 3524766, "url": "https://en.wikipedia.org/wiki?curid=3524766", "views": 5409.5609619796405, "title": "YouTube", "text": "YouTube is a global online video sharing and social media platform headquartered in San Bruno, California. It was launched on February 14, 2005, by Steve Chen, Chad Hurley, and Jawed Karim. It is owned by Google, and is the second most visited website, after Google Search. YouTube has more than 2.5 billion monthly users who collectively watch more than one billion hours of videos each day. , videos were being uploaded at a rate of more than 500 hours of content per minute.", "paragraph_id": 0, "id": 1}

As seen in the above example, the following would be a valid create_dataset call since langs is in the first entry but not in the second entry. The fields wiki_id, url, views and title are present in both JSONs.

# Upload a dataset for embed jobs
ds=co.datasets.create(
	name='sample_file',
	# insert your file path here - you can upload it on the right - we accept .csv and jsonl files
	data=open('embed_jobs_sample_data.jsonl', 'rb'),
	keep_fields=['wiki_id','url','views','title']
	optional_fields=['langs']
	dataset_type="embed-input",
  embedding_types=['float']
	)

# wait for the dataset to finish validation
print(co.wait(ds))

Using Datasets for Fine-tuning

Once the dataset passes validation, it can be used to fine-tune a model. To do this properly, you must include at least five train examples per label.

In the example below, we will create a new dataset and upload an evaluation set using the optional eval_data parameter. We will then kick off a fine-tuning job using co.create_custom_model.

# create a dataset
my_dataset = co.datasets.create(
	name="shakespeare",
	dataset_type="prompt-completion-finetune-input",
	data=open("./shakespeare.csv", "rb"),
  eval_data=open("./shakespeare-eval.csv", "rb")
)

co.wait(my_dataset)

# start training a custom model using the dataset
co.finetuning.create_finetuned_model(
	name="shakespearean-model", 
	model_type="GENERATIVE", 
	dataset=my_dataset)

Dataset Types

When a dataset is created, the dataset_type field must be specified in order to indicate the type of tasks this dataset is meant for.

Datasets of type prompt-completion-finetune-input, for example, are expected to have entries with the fields prompt and completion, like so:

{
  "prompt": "Say the word fish"
	"completion": "fish"
},
{
  "prompt": "Count to three"
	"completion": "1, 2, 3"
}
...

The following table describes the types of datasets supported by the Dataset API:

Dataset TypeDescriptionSchemaRulesTask TypeStatusFile Types SupportedAre Metadata Fields Supported?Sample File
prompt-completion-finetune-inputCommand-style data with a prompt and completion.prompt:string completition:stringYou must include at least 32 unique, utf-8 encoded training examples. Only 16 are required if you've uploaded evaluation data.Generative Fine-tuningSupportedcsv and jsonlNomath_solver_total.json
single-label-classification-finetune-inputA file containing text and a single label (class) for each texttext:string label:stringYou must include 40 valid train examples,
with five examples per label. A label cannot be present in all examples
There must be 24 valid evaluation examples.
Classification Fine-tuningSupportedcsv and jsonlNoArt classification file
multi-label-classification-finetune-inputA file containing text and an array of label(s) (class) for each texttext:string label:list[string]You must include 40 valid train examples, with five examples per label
A label cannot be present in all examples. There must be 24 valid evaluation examples.
Classification Fine-tuningSupported jsonlNon/a
reranker-finetune-inputA file containing queries and an array of passages relevant to the query. There must also be "hard negatives", passages semantically similar but ultimately not relevant.query:string relevant_passages:list[string] hard_negatives:list[string]There must be 256 train examples and at least 64 evaluation examples. There must be at least one relevant passage, with no overlap between relevant passage and hard negatives.Rerank Fine-tuningSupportedjsonlNotrain_valid.json
chat-finetune-inputA file containing conversationsmessages: list[Message]

- Message - role: text context: text
There must be two valid train examples and one valid evaluation example.Chat Fine-tuningIn progress/not supportedjsonlNotrain_celestial_fox.json
embed-inputA file containing text to be embeddedtext:stringNone of the rows in the file can be empty.Embed jobSupportedcsv and jsonlYesembed_jobs_sample_data.jsonl / [embed_jobs_sample_data.csv

Downloading a dataset

Datasets can be fetched using its unique id. Note that the dataset name and id are different from each other; names can be duplicated, while ids cannot.

Here is an example code snippet showing how to fetch a dataset by its unique id.

# fetch the dataset by ID
my_dataset = co.datasets.get(id="<DATASET_ID>")

# print each entry in the dataset
for record in my_dataset.open():
  print(record)

# save the dataset as jsonl
co.utils.save_dataset(dataset=my_dataset, filepath='./path/to/new/file.jsonl')
# or save the dataset as csv
co.utils.save_dataset(dataset=my_dataset, filepath='./path/to/new/file.csv')

Deleting a dataset

Datasets are automatically deleted after 30 days, but they can also be deleted manually. Here's a code snippet showing how to do that:

co.datasets.delete(id="<DATASET_ID>")