diff --git a/nlu/models/slot_filler.py b/nlu/models/slot_filler.py index b83df0fc..c18a4840 100644 --- a/nlu/models/slot_filler.py +++ b/nlu/models/slot_filler.py @@ -172,7 +172,7 @@ class SlotFiller(tfbp.Model): def predict(self): while True: text = input("Provide text: ") - info = self.get_prediction(text) + info = self.get_prediction(text.lower()) print(self.summary()) print("Text : " + text)