Visualize your dataset with the Bespoke Curator Viewer

The Bespoke Curator Viewer provides real-time updates on the progress of your data generation runs and allows you to closely inspect the data being generated. You can start the viewer by simply running

curator-viewer

This will pop up a browser window with the viewer running at http://localhost:3000 by default if you haven't specified a different host and port.

Curator Runs History

The first view that you will see after navigating to the Bespoke Curator Viewer is the Runs History view, which shows all the different runs you created with Curator.

Dataset Details

Clicking on a run will open up the Dataset Details view, which shows more details about the dataset being generated by the run.

The graph on the top provides some aggregate statistics about the data generation run, such as the number of requests and responses over time, or the number and distribution of prompt and completion tokens being generated. You can change the statistics being visualized by clicking on the button on the top-right corner ("Requests & Responses" in the screenshot above).

The table at the bottom provides details about the content of the requests being processed. Clicking on a row lets you see the full user and assistant messages.

Running Bespoke Curator Viewer on a different port or host

You can run the Bespoke Curator Viewer on a different host and port by setting the --host and --port optional parameters.

>>> curator-viewer -h
usage: curator-viewer [-h] [--host HOST] [--port PORT] [--verbose]

Curator Viewer

options:
  -h, --help     show this help message and exit
  --host HOST    Host to run the server on (default: localhost)
  --port PORT    Port to run the server on (default: 3000)
  --verbose, -v  Enables debug logging for more verbose output

Troubleshooting

Installing Node

The curator-viewer requires Node.js to be installed and will fail if it can't find Node.js on your system. You can install them by following the instructions here.

Last updated