Click4Ai

247.

Medium

Intent Classification is a fundamental task in NLP that involves identifying the intent behind a user's message. **Example:** Given a message 'I want to book a flight', the intent is 'booking'. **Constraints:** The input will be a string and the output will be the identified intent.

Test Cases

Test Case 1
Input: 'I want to book a flight'
Expected: 'booking'
Test Case 2
Input: 'Hello, how are you?'
Expected: 'greeting'
+ 3 hidden test cases