From a41348683fd12347a776ec0af936e96a46d2b98f Mon Sep 17 00:00:00 2001 From: Michael Demoret Date: Thu, 3 Nov 2022 16:43:27 -0600 Subject: [PATCH] Removing `compare_class_to_scores` --- tests/test_sid.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_sid.py b/tests/test_sid.py index 09a032b1b5..8a5b6d83d9 100755 --- a/tests/test_sid.py +++ b/tests/test_sid.py @@ -36,7 +36,6 @@ from morpheus.stages.preprocess.preprocess_nlp_stage import PreprocessNLPStage from utils import TEST_DIRS from utils import calc_error_val -from utils import compare_class_to_scores # End-to-end test intended to imitate the Sid validation test FEATURE_LENGTH = 256 @@ -110,8 +109,6 @@ def _run_minibert_pipeline(config, tmp_path, model_name, truncated, data_col_nam pipe.run() - compare_class_to_scores(out_file, config.class_labels, 'si_', 'score_', threshold=0.5) - return calc_error_val(results_file_name)