The left surface is a synthetic loss landscape over two hyperparameters (e.g. learning rate and regularization strength). An automated tuner drops trial points onto it, searching for the lowest loss. The right panel is a live Pareto front: every trial also has an accuracy and an inference-latency cost, and in the real world you rarely get the best of both — improving one often worsens the other.
Real AutoML systems (Optuna, Ray Tune, Vertex AI Vizier) use exactly this explore-then-exploit pattern, often built on Bayesian optimization or population-based training, and report results as a Pareto front so a human can choose the operating point that fits their deployment constraints.
An automated tuner drops trial configurations onto a 3D hyperparameter loss landscape while a linked Pareto front shows how those same trials trade accuracy against inference latency.
Random vs. Bayesian-style search behave very differently: random search scatters uniformly, while the smart strategy explores broadly then converges on the best region found so far. Multi-objective tuning is shown as a live Pareto front where no point is strictly better than another on both axes.
Pick a search strategy and trial budget, toggle transfer-learning warm start to bias the tuner near a known-good prior, and drag the accuracy/latency preference slider to watch the recommended trade-off point move along the Pareto front.
Production AutoML tools like Optuna, Ray Tune and Vertex AI Vizier report tuning results exactly this way — as a Pareto front — so engineers can choose a model that fits their latency budget instead of just the single "best" accuracy number.