Experiment groups allow you to organize experiments within a project. Previously, all experiments in a project were shown in one list. With experiment groups, you can compare and rank experiments based on groups that you define.Documentation Index
Fetch the complete documentation index at: https://docs.galileo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Experiment groups in the Galileo Console
To ease the transition to experiment groups, your experiments have been organized into dataset groups. By default, an “Other Experiments” group contains experiments that do not have associated datasets.
Move experiments to another group
You can move existing experiments to other groups, including to new experiment groups that you define. To move an individual experiment: Go to the experiment page, open the context menu in the top right, and click on the menu option to “Move to experiment group”.

Rank experiments in a group
Use the Ranking button in an experiment group to customize a leaderboard for that group. The ranking criteria is configurable based on a weighted average of metrics. With experiment groups, each group can now have its own leaderboard and ranking criteria.
Experiment groups in the Galileo SDK
Python SDK support for Experiment Groups is in Galileo ≥ 2.2.0
Your existing experiment code keeps working. The optional
experiment_group parameter does not change behavior when omitted. Your current run_experiment, create_experiment, and get_experiments calls stay valid.experiment_group parameter) to organize your experiments.
Place an experiment into an experiment group
List experiment groups and their experiments
create_experiment(..., experiment_group="…") when you need an experiment shell (for example tagging or setup) before data rows are processed. For full parameters, see the Experiments SDK reference.
How an experiment gets into a group
Galileo applies rules in this order (first match wins):- Experiment group name — If you pass
experiment_group(or choose a group in the UI), the experiments uses or creates that named group. - Dataset — Else if the experiment includes a dataset, the experiment can land in that dataset’s group.
- Other Experiments — Else the experiment goes to the built-in default group.
Related resources
Run experiments in playgrounds
Use the console for playgrounds, datasets, and experiment workflows.
Experiments basics
Metrics, datasets, and how experiments fit together.
Run experiments in code
Prompt templates, generated output, and custom functions.
Unit tests and CI
Run experiments inside tests and pipelines.