Skip to content

Index

New to ado?

Before diving in, familiarise yourself with the key concepts so the YAML examples and CLI commands throughout these examples make immediate sense.

Tutorials

Start here if you are new to ado. These examples walk you through the full research loop step by step, from defining a space to retrieving results.

  • Your first ado experiment — Write a Python function as a custom experiment, define a discovery space, and run an operation end-to-end.

  • Beyond the basics: ado with real data — Walk through the core ado workflow — defining a discoveryspace, running an operation to sample and measure points, and retrieving the results — using a real cloud workload dataset.

These are intermediate examples that build on both tutorials. They assume you are comfortable with the core ado workflow and introduce the ray_tune operator, which gives access to the RayTune optimisation framework.

  • Search a space with an optimizer — Use ray_tune with a pluggable optimiser to find the minimum of a test function. Also covers creating custom experiments and using parameterisable experiments.
  • Search based on a custom objective — Define a dependent experiment that derives a new metric (e.g. cost) from the output of another experiment, then search the combined space.

Analysis

These are advanced examples that show how to use ado to analyse and model a configuration space after, or instead of, exhaustive measurement.

  • Identify the important dimensions of a space — Use the Latin-Hypercube sampler and the InformationGain stopper from ray_tune to rank which entity-space dimensions most influence a target metric, stopping automatically once the ranking stabilises.
  • Quickly building a predictive model — Use the TRIM operator to intelligently sample just enough points to train an accurate AutoGluon surrogate model, stopping once the model quality plateaus. The resulting model can be used for prediction at unmeasured points.

Fine-tuning

These examples use the SFTTrainer actuator to benchmark LLM fine-tuning throughput across a workload parameter space (model name, batch size, max sequence length, etc.). Start with the local example and then scale up to a remote cluster.

vLLM Performance

These examples use the vllm_performance actuator to benchmark foundation model inference — from a single live endpoint to full Kubernetes/OpenShift deployments and specialised geospatial models.

  • Testing the throughput of an inference endpoint — Find the maximum stable request rate for a running OpenAI API-compatible endpoint by using an optimiser to efficiently probe the request-rate dimension.
  • Exploring vLLM deployment configurations — Evaluate different vLLM server deployment configurations (GPU type, batch size, memory limits) on Kubernetes/OpenShift by combining the test-deployment-v1 experiment with the random_walk operator.
  • Benchmarking geospatial models with vLLM — Benchmark IBM-NASA Prithvi geospatial models for Earth observation tasks (flood detection, land-use classification) using the test-geospatial-deployment-v1 experiment.