|
from transformers import AutoModelForSequenceClassification |
|
from transformers import AutoTokenizer, AutoConfig |
|
from clean_data import cleaned_complaints |
|
import numpy as np |
|
from scipy.special import softmax |
|
import gradio as gr |
|
|
|
|
|
def preprocess(text): |
|
new_text = [] |
|
for t in text.split(" "): |
|
t = '@user' if t.startswith('@') and len(t) > 1 else t |
|
t = 'http' if t.startswith('http') else t |
|
new_text.append(t) |
|
return " ".join(new_text) |
|
|
|
|
|
MODEL = f"ThirdEyeData/Consumer-Complaint-Segmentation" |
|
model = AutoModelForSequenceClassification.from_pretrained(MODEL) |
|
|
|
|
|
|
|
tokenizer = AutoTokenizer.from_pretrained(MODEL) |
|
config = AutoConfig.from_pretrained(MODEL) |
|
|
|
|
|
def classify_compliant(text): |
|
text = cleaned_complaints(text) |
|
text = preprocess(text) |
|
encoded_input = tokenizer(text, return_tensors='pt') |
|
output = model(**encoded_input) |
|
scores = output[0][0].detach().numpy() |
|
scores = softmax(scores) |
|
|
|
|
|
probs = {} |
|
ranking = np.argsort(scores) |
|
ranking = ranking[::-1] |
|
|
|
|
|
l = config.id2label[ranking[0]] |
|
|
|
|
|
return l |
|
|
|
|
|
|
|
|
|
title="Customer Complaints Categorisation" |
|
description = """Write a complaint on insurance product or service,\ |
|
see how the machine learning model is able to predict your Complaint type""" |
|
article = """ |
|
- Click submit button to test Consumer Complaint Segmentation |
|
- Click clear button to refresh text |
|
""" |
|
|
|
gr.Interface(classify_compliant, |
|
inputs=gr.Textbox(lines =10,label = "Type your Complaint of our Product here", max_lines = 20), |
|
outputs = gr.Textbox(lines =5,label = "Complaint Category"), |
|
title = title, |
|
description = description, |
|
|
|
article = article, |
|
allow_flagging = "never", |
|
live = False, |
|
examples=["""Th e day before my Salliemae student loan payment was due I contacted a rep to discuss the impact on my account of making my payment at the end of the month rather than the middle for just that one month. |
|
The rep indicated it would be no problem, but that I still may get "" a call '' each day from Salliemae until I made my payment. I understood, requested my account be notated accordingly, and hung up. For two weeks I endured numerous calls per day ; |
|
I lost count at six calls one day, which was the norm for the number of calls Salliemae made in an effort to collect a debt that had a due date that had been arranged and had not come up yet. """, |
|
"""The representative told me the total amount due was {$2100.00} and that I can settle for half of that amount. Unfortunately, I was unable to accept the settlement but began to question the amount because my last statement was {$1800.00} and |
|
there was nothing written in the contract for additional interest charges should my account go into collection. |
|
I told the representative that I will pay the amount actually owed and I want to make a payment arrangement. She told me I ca n't just do what I want, |
|
If I want to pay the original amount due, it has to be paid in full. I told her that that is not fair debt collection practice and that I am only contractually obligated to the {$1800.00} and we can set up an arrangement from that. """ , |
|
"""This debt is beyond the Maryland Statute of Limitations. It is illegal for a debt collector to collect on an expired debt. They have taken illegal action by seizing my Maryland State Refund when the debt had already expired and beyond the Statute of Limitation which is 3 years in the state of Maryland""", |
|
"""The company has been calling my employer in an attempt to collect a debt. When I spoke with them and informed them that this was not an appropriate number to call. I asked what company they were calling from and a phone number so he told me the company name, but the man on the phone would not give me his name or a phone number. |
|
I had mailed a letter requesting verification a few weeks ago and had n't received anything back. In the letter I specifically requested that all communication be done through mail.""", |
|
""" The company has been calling my employer in an attempt to collect a debt. When I spoke with them and informed them that this was not an appropriate number to call. I asked what company they were calling from and a phone number so he told me the company name, but the man on the phone would not give me his name or a phone number. |
|
I had mailed a letter requesting verification a few weeks ago and had n't received anything back. In the letter I specifically requested that all communication be done through mail.""" |
|
|
|
] |
|
).launch() |
|
|