From 73857be2448b0f8b8852236bf1ef64c1109bb4ee Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 2 Sep 2025 22:59:06 +0200 Subject: [PATCH] refactor(qav3): comment out some inadequate distances for MO optimization MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .../freqaimodels/QuickAdapterRegressorV3.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py b/quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py index 36aa6bf..899e6c1 100644 --- a/quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py +++ b/quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py @@ -722,12 +722,12 @@ class QuickAdapterRegressorV3(BaseRegressionModel): return None metrics = { - "braycurtis", - "canberra", + # "braycurtis", + # "canberra", "chebyshev", "cityblock", - "correlation", - "cosine", + # "correlation", + # "cosine", # "dice", "euclidean", # "hamming", @@ -807,12 +807,12 @@ class QuickAdapterRegressorV3(BaseRegressionModel): ideal_point_2d = ideal_point.reshape(1, -1) if metric in { - "braycurtis", - "canberra", + # "braycurtis", + # "canberra", "chebyshev", "cityblock", - "correlation", - "cosine", + # "correlation", + # "cosine", # "dice", "euclidean", # "hamming", -- 2.43.0