in src/infer_intent.py [0:0]
def main():
text_list = [
'floor repair cost',
'pet store near me',
'who is the us president',
'italian food',
'sandwiches for lunch',
"cheese burger cost",
"What is the weather today",
"what is the capital of usa",
"cruise trip to carribean",
]
cls = IntentClassifier()
for sequence in text_list:
cls.find_intent(sequence, verbose=True)