Move hyperopt-loss functions to their own package

This commit is contained in:
Matthias
2022-04-30 13:59:23 +02:00
parent bfae732ba4
commit 2acb68e6e2
11 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ class HyperOptLossResolver(IResolver):
object_type = IHyperOptLoss
object_type_str = "HyperoptLoss"
user_subdir = USERPATH_HYPEROPTS
initial_search_path = Path(__file__).parent.parent.joinpath('optimize').resolve()
initial_search_path = Path(__file__).parent.parent.joinpath('optimize/hyperopt_loss').resolve()
@staticmethod
def load_hyperoptloss(config: Dict) -> IHyperOptLoss: