StyleDistance: Stronger Content-Independent Style Embeddings with Synthetic Parallel Examples
Ajay Patel, Jiacheng Zhu, Justin Qiu, Zachary Horvitz, Marianna Apidianaki, Kathleen McKeown, Chris Callison-Burch
TL;DR
StyleDistance addresses content leakage in style representations by training content-independent embeddings with synthetic parallel data generated by an LLM. It introduces SynthStel, a dataset of near-exact paraphrases with controlled 40 style features, and trains a RoBERTa-based encoder with a triplet loss $L_t(\theta) = \sum_{(a,p,n)\in \mathcal{D}} [ \left\| f_\theta(a) - f_\theta(p) \right\|_2^2 - \left\| f_\theta(a) - f_\theta(n) \right\|_2^2 + \alpha \right]_+$; optimizing to separate style from content. The results show improved content-independence on STEL and STEL-or-Content benchmarks, with strong generalization to unseen style features and competitive or superior performance on downstream tasks like authorship verification and automatic style transfer evaluation. The authors release SynthStel, StyleDistance models, and code to enable replication and application in style analysis tasks.
Abstract
Style representations aim to embed texts with similar writing styles closely and texts with different styles far apart, regardless of content. However, the contrastive triplets often used for training these representations may vary in both style and content, leading to potential content leakage in the representations. We introduce StyleDistance, a novel approach to training stronger content-independent style embeddings. We use a large language model to create a synthetic dataset of near-exact paraphrases with controlled style variations, and produce positive and negative examples across 40 distinct style features for precise contrastive learning. We assess the quality of our synthetic data and embeddings through human and automatic evaluations. StyleDistance enhances the content-independence of style embeddings, which generalize to real-world benchmarks and outperform leading style representations in downstream applications. Our model can be found at https://huggingface.co/StyleDistance/styledistance .
