From 8981efccc2401c98d540956d950bd6ad25e17315 Mon Sep 17 00:00:00 2001 From: v1docq Date: Tue, 12 Mar 2024 13:29:28 +0300 Subject: [PATCH] exclude logdet and harmonic metrics --- fedot_ind/core/tuning/search_space.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fedot_ind/core/tuning/search_space.py b/fedot_ind/core/tuning/search_space.py index cfb679e13..a417240ee 100644 --- a/fedot_ind/core/tuning/search_space.py +++ b/fedot_ind/core/tuning/search_space.py @@ -26,11 +26,11 @@ 'riemann_extractor': {'estimator': {'hyperopt-dist': hp.choice, 'sampling-scope': [['corr', 'cov', 'lwf', 'mcd', 'hub']]}, - 'tangent_metric': {'hyperopt-dist': hp.choice, 'sampling-scope': [['euclid', 'harmonic', - 'logdet', 'logeuclid', 'riemann', + 'tangent_metric': {'hyperopt-dist': hp.choice, 'sampling-scope': [['euclid', 'logeuclid', + 'riemann', 'wasserstein']]}, - 'SPD_metric': {'hyperopt-dist': hp.choice, 'sampling-scope': [['ale', 'alm', 'euclid', 'harmonic', - 'identity', 'kullback_sym', 'logdet', + 'SPD_metric': {'hyperopt-dist': hp.choice, 'sampling-scope': [['ale', 'alm', 'euclid', + 'identity', 'kullback_sym', 'logeuclid', 'riemann', 'wasserstein']]}}, 'recurrence_extractor': {'window_size': {'hyperopt-dist': hp.choice, 'sampling-scope': [[x for x in range(5, 50, 5)]]},