diff --git a/flashrag/pipeline/active_pipeline.py b/flashrag/pipeline/active_pipeline.py index ff4d094..a02f3c7 100644 --- a/flashrag/pipeline/active_pipeline.py +++ b/flashrag/pipeline/active_pipeline.py @@ -981,8 +981,6 @@ def run_batch(self, items): # Perform batch retrieval for new thoughts of active items if active_item_ids: - print(len(active_item_ids)) - print(active_item_ids) new_thoughts_for_retrieval = [batch_thoughts[item_id][-1] for item_id in active_item_ids] new_retrieval_results, new_scoress = self.retriever.batch_search(new_thoughts_for_retrieval, return_score=True)