baikal.set_config¶
-
baikal.set_config(print_changed_only=None)¶ Set global configuration parameters.
- Parameters
print_changed_only – If
True, only the parameters (of the step’s parent estimator) that were set to non-default values will be printed when printing a step. Thenameandn_outputsparameters are always printed. For example, if there is aSomeStepstep class that inherited from an estimator (or any class that implements the scikit-learn API) with signature(x=123, y='foo'), setting the flag toTruewould printSomeStep(name='SomeStep_0', n_outputs=1)and setting toFalsewould printSomeStep(x=123, y='foo', name='SomeStep_0', n_outputs=1).