From 68cb90534fca0efa23f37bb572161df1f8863138 Mon Sep 17 00:00:00 2001 From: hexastack Date: Thu, 28 Nov 2024 20:15:22 +0100 Subject: [PATCH] fix: identation in comments --- nlu/models/slot_filler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nlu/models/slot_filler.py b/nlu/models/slot_filler.py index 917fa883..b83df0fc 100644 --- a/nlu/models/slot_filler.py +++ b/nlu/models/slot_filler.py @@ -263,7 +263,7 @@ class SlotFiller(tfbp.Model): print(f"Skipping entity for '{slot_name}' because '{slot_value}' was not found in text.") continue # Skip this entity if not found in text - #Post Processing + # Post Processing synonym_map = self.get_synonym_map() final_slot_value = synonym_map.get(slot_value) if final_slot_value is None: