CLLGDec 14, 2021

Classifying Emails into Human vs Machine Category

arXiv:2112.07742v1
Originality Incremental advance
AI Analysis

This work addresses a product requirement for Yahoo Mail users by enhancing email classification, though it is incremental as it builds on existing methods for a specific domain.

The paper tackled the problem of classifying emails as human or machine-generated for Yahoo Mail, proposing a deep learning approach with four CNN models combined into a full model that improved adjusted-recall from 70.5% to 78.8% and precision from 94.7% to 96.0% compared to an old logistic regression model.

It is an essential product requirement of Yahoo Mail to distinguish between personal and machine-generated emails. The old production classifier in Yahoo Mail was based on a simple logistic regression model. That model was trained by aggregating features at the SMTP address level. We propose building deep learning models at the message level. We built and trained four individual CNN models: (1) a content model with subject and content as input; (2) a sender model with sender email address and name as input; (3) an action model by analyzing email recipients' action patterns and correspondingly generating target labels based on senders' opening/deleting behaviors; (4) a salutation model by utilizing senders' "explicit salutation" signal as positive labels. Next, we built a final full model after exploring different combinations of the above four models. Experimental results on editorial data show that our full model improves the adjusted-recall from 70.5% to 78.8% compared to the old production model, while at the same time lifts the precision from 94.7% to 96.0%. Our full model also significantly beats the state-of-the-art Bert model at this task. This full model has been deployed into the current production system (Yahoo Mail 6).

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes