Page cover
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create Experiments (AutoML) using Python SDK

You can run your first Katib hyperparameter tuning experiment using the Python SDK. In the following example, we maximize a simple objective function.

F(a,b)=4ab2F(a,b)=4a-b^2

The larger the value of a and the smaller the value of b, the greater the value of function F.

You can open a JupyLab Notebook in KubeFlow, or create it first, to run this script.

After the experiment is completed, you should see output similar to the example, including the most optimal trial, hyperparameters, and observation metrics.

Last updated