You need to build a model that is able to classify customer complaints based on the products/services. By doing so, you can segregate these tickets into their relevant categories and, therefore, help in the quick resolution of the issue.
You will be doing topic modelling on the .json data provided by the company. Since this data is not labelled, you need to apply NMF to analyse patterns and classify tickets into the following five clusters based on their products/services:
-
Credit card / Prepaid card
-
Bank account services
-
Theft/Dispute reporting
-
Mortgages/loans
-
Others
With the help of topic modelling, you will be able to map each ticket onto its respective department/category. You can then use this data to train any supervised model such as logistic regression, decision tree or random forest. Using this trained model, you can classify any new customer complaint support ticket into its relevant department.
You need to perform the following eight major tasks to complete the assignment:
-
Data loading
-
Text preprocessing
-
Exploratory data analysis (EDA)
-
Feature extraction
-
Topic modelling6. Model building using supervised learning
-
Model training and evaluation
-
Model inference