set_config#

skore.set_config(show_progress=None)[source]#

Set skore configuration.

Setting the configuration affects global settings meaning that it will be used by all skore functions and classes, even in the processes and threads spawned by skore.

Parameters:
show_progressbool, default=None

If True, show progress bars. Otherwise, do not show them.

See also

config_context

Context manager for skore configuration.

get_config

Retrieve current values of the configuration.

Examples

>>> from skore import set_config
>>> set_config(show_progress=False)