Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

datasets.md 4.7 KB

You have to be logged in to leave a comment. Sign In
sidebar_position sidebar_label title description keywords pagination_prev pagination_next
21 Dataset generation Dataset Generation - Automated Test Data Creation Generate comprehensive test datasets automatically using promptfoo. Create diverse test cases, personas, and edge cases for thorough LLM evaluation. [dataset generation automated testing test data creation LLM datasets evaluation data test automation synthetic data] configuration/scenarios configuration/huggingface-datasets

Dataset generation

Your dataset is the heart of your LLM eval. To the extent possible, it should closely represent true inputs into your LLM app.

promptfoo can extend existing datasets and help make them more comprehensive and diverse using the promptfoo generate dataset command. This guide will walk you through the process of generating datasets using promptfoo.

Prepare your prompts

Before generating a dataset, you need to have your prompts ready, and optionally tests:

prompts:
  - 'Act as a travel guide for {{location}}'
  - 'I want you to act as a travel guide. I will write you my location and you will suggest a place to visit near my location. In some cases, I will also give you the type of places I will visit. You will also suggest me places of similar type that are close to my first location. My current location is {{location}}'

tests:
  - vars:
      location: 'San Francisco'
  - vars:
      location: 'Wyoming'
  - vars:
      location: 'Kyoto'
  - vars:
      location: 'Great Barrier Reef'

Alternatively, you can specify your prompts as CSV:

prompts: file://travel-guide-prompts.csv

where the CSV looks like:

prompt
"Act as a travel guide for {{location}}"
"I want you to act as a travel guide. I will write you my location and you will suggest a place to visit near my location. In some cases, I will also give you the type of places I will visit. You will also suggest me places of similar type that are close to my first location. My current location is {{location}}"

Run promptfoo generate dataset

Dataset generation uses your prompts and any existing test cases to generate new, unique test cases that can be used for evaluation.

Run the command in the same directory as your config:

promptfoo generate dataset

This will output the tests YAML to your terminal.

If you want to write the new dataset to a YAML:

promptfoo generate dataset -o tests.yaml

a CSV:

promptfoo generate dataset -o tests.csv

Or if you want to edit the existing config in-place:

promptfoo generate dataset -w

Loading from output files

When using the -o flag, you will need to include the generated dataset within the tests block of your configuration file.

For example:

prompts:
  - 'Act as a travel guide for {{location}}'
  - 'I want you to act as a travel guide. I will write you my location and you will suggest a place to visit near my location. In some cases, I will also give you the type of places I will visit. You will also suggest me places of similar type that are close to my first location. My current location is {{location}}'

tests:
  - file://tests.csv
  - vars:
      location: 'San Francisco'
  - vars:
      location: 'Wyoming'
  - vars:
      location: 'Kyoto'
  - vars:
      location: 'Great Barrier Reef'

Customize the generation process

You can customize the dataset generation process by providing additional options to the promptfoo generate dataset command. Below is a table of supported parameters:

Parameter Description
-c, --config Path to the configuration file.
-i, --instructions Specific instructions for the LLM to follow when generating test cases.
-o, --output [path] Path to output file. Supports CSV and YAML.
-w, --write Write the generated test cases directly to the configuration file.
--numPersonas Number of personas to generate for the dataset.
--numTestCasesPerPersona Number of test cases to generate per persona.
--provider Provider to use for the dataset generation. Eg: openai:chat:gpt-4.1

For example:

promptfoo generate dataset --config path_to_config.yaml --output path_to_output.yaml --instructions "Consider edge cases related to international travel"
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...