CHiPS: Character Histograms and Positional Signals for Lightweight Authorship Attribution in Romanian Texts
CHiPS is a lightweight, character-level authorship attribution method for Romanian texts that avoids tokenization, syntactic analysis, pretrained language models, and transformer fine-tuning. It uses two complementary style fingerprints: CH-SVM (character-histogram classifier based on one-character marginal distributions) and FFT12-LR (positional-signal classifier using Fourier/Welch spectral descriptors of impulse trains). The leakage-safe fusion variant CHiPS-F achieves 0.9310 accuracy and 0.9
Analysis
TL;DR
- CHiPS is a lightweight, character-level authorship attribution method for Romanian texts that avoids tokenization, syntactic analysis, pretrained language models, and transformer fine-tuning.
- It uses two complementary style fingerprints: CH-SVM (character-histogram classifier based on one-character marginal distributions) and FFT12-LR (positional-signal classifier using Fourier/Welch spectral descriptors of impulse trains).
- The leakage-safe fusion variant CHiPS-F achieves 0.9310 accuracy and 0.9341 macro-F1 on a locked grouped ROST split with strict source-text-level evaluation and grouped five-fold model selection.
- The method intentionally restricts features to transparent, interpretable character evidence under strict leakage control, not aiming for maximum possible accuracy but demonstrating robust performance with minimal computational overhead.
- On the secondary ROSTories-cleaned corpus, CHiPS-R achieves 0.8919 accuracy and 0.8708 macro-F1, showing consistent performance across different dataset configurations.
Why It Matters
This work demonstrates that high-performance authorship attribution can be achieved with simple, transparent, and computationally efficient methods without relying on complex deep learning architectures or large pretrained models. For AI practitioners, it provides an important benchmark for lightweight NLP solutions in forensic text analysis, particularly for languages like Romanian where resources may be limited. The strict leakage control and focus on interpretable features make this approach valuable for real-world applications where model transparency and reproducibility are critical.
Technical Details
- CH-SVM Component: Uses character-histogram features based solely on one-character marginal distributions, avoiding n-grams with length ≥ 2 to maintain simplicity and prevent data leakage through contextual patterns.
- FFT12-LP Component: Represents selected characters and punctuation classes as binary indicator sequences (impulse trains) over character positions, then extracts Fourier and Welch spectral descriptors to capture positional writing style patterns.
- Fusion Strategy: Implements CHiPS-F as a decision-level fusion of the two components designed to be leakage-safe, ensuring no information from test documents contaminates training.
- Evaluation Protocol: Uses locked grouped ROST splits with source-text-level evaluation and grouped five-fold model selection to rigorously prevent data leakage between training and testing sets.
- Optional Enhancement: Includes a top-5 listwise reranker trained exclusively on out-of-fold predictions to further improve performance while maintaining the integrity of the evaluation protocol.
Industry Insight
The success of CHiPS suggests that for many authorship attribution tasks, especially in resource-constrained environments or for specific languages, simpler statistical approaches can achieve competitive results compared to heavy transformer-based models. This has significant implications for developing deployable forensic tools that require low latency, minimal computational resources, and explainable decisions. Researchers should consider incorporating strict leakage control protocols when evaluating new methods to ensure their reported performance reflects genuine predictive capability rather than data contamination. The approach also highlights the value of combining multiple complementary feature types (statistical histograms + spectral positional signals) to capture different aspects of writing style within a single lightweight framework.
Disclaimer: The above content is generated by AI and is for reference only.