Note

This page is a reference documentation. It only explains the function signature, and not how to use it. Please refer to the What you really need to know section for the big picture.

julearn.model_selection.register_searcher#

julearn.model_selection.register_searcher(searcher_name, searcher, overwrite=None)#

Register searcher to julearn.

This function allows you to add a scikit-learn compatible searching algorithm to julearn. After, you can call it as all other searchers in julearn.

Parameters:
searcher_namestr

Name by which the searcher will be referenced by.

searcherobj

The searcher class by which the searcher can be initialized.

overwritebool | None, optional

decides whether overwrite should be allowed, by default None. Options are:

  • None : overwrite is possible, but warns the user

  • True : overwrite is possible without any warns

  • False : overwrite is not possible, error is raised instead

Raises:
ValueError

If the specified searcher is already available and overwrite is set to False.