diff --git a/src/domain_classifier/preprocessor.py b/src/domain_classifier/preprocessor.py index 7c0f439..32e14e8 100644 --- a/src/domain_classifier/preprocessor.py +++ b/src/domain_classifier/preprocessor.py @@ -724,7 +724,6 @@ def filter_by_scores(self, col='scores', n_max=1e100, s_min=0.5): # Check if embeddings have been provided scores = np.array(self.df_corpus[col]) - breakpoint() ids = self.get_top_scores(scores, n_max=n_max, s_min=s_min) return ids, scores diff --git a/src/task_manager.py b/src/task_manager.py index 184d634..2cf5c08 100644 --- a/src/task_manager.py +++ b/src/task_manager.py @@ -703,8 +703,6 @@ def get_labels_from_scores(self, n_max: int = 50_000, s_min: float = 1.0, if not self._is_corpus(): return "No corpus has been loaded" - breakpoint() - # Find the documents with the highest scores given the keywords ids, scores = self.CorpusProc.filter_by_scores( col=col, n_max=n_max, s_min=s_min)