Setting Verta Config for the Python client
The Client config file allows you to define settings that are easily repeatable and sharable. This can be either a JSON or a YAML file.
When the Client
is instantiated, it will look for a file called verta_config.json
or verta_config.yaml
in the following locations—in order—using the first one it finds:
the current directory
parent directories, recursively
$HOME/.verta/
Example
Defining a config file like this:
verta_config.yaml
allows you go directly from instantiating a client to working with your ExperimentRun
without needing to explicitly set the project or experiment in your code:
workflow.py
Supported fields
For the fields and structure of the config file itself, please refer to the specification here.
Last updated