fix: uncase input text

This commit is contained in:
hexastack 2024-11-28 20:17:33 +01:00
parent 68cb90534f
commit 476dc510ea

View File

@ -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)