PostToPersonality (P2P), published as a CIKM 2025 short paper, separately classifies the four MBTI dichotomies from the 50 most recent posts of each of 8,675 PersonalityCafe users. A local DeepSeek-R1-Distill-Llama-8B is QA-LoRA-fine-tuned for ten epochs and generates a textual personality description. To address imbalance, the paper uses SMOTE to interpolate hidden representations for the 15 less frequent types. The original text and generated description are encoded with Sentence-BERT, five labeled training users are retrieved, and a DeepSeek-V3 API returns four letters through in-context learning. On one 60/20/20 split, P2P reports 93.21% I/E, 94.75% N/S, 93.06% T/F, and 88.58% J/P accuracy, outperforming ten conventional and neural baselines. It does not report joint 16-type accuracy. The central threat is label leakage intrinsic to the corpus. Data come from an MBTI-focused forum, while preprocessing only lowercases, lemmatizes, and removes stopwords, special characters, links, URLs, and whitespace; it does not remove type names or MBTI vocabulary. The appendix itself includes an input literally stating “I knew I was an INTJ”, matching its INTJ ground truth, and another containing ENTP/ESTP/EXTP abbreviations. The model and retriever can therefore learn self-labels, quotations, and forum jargon rather than infer traits from language behavior. Hallucination is not measured either: the paper concludes that RAG mitigates hallucination solely because some classification metrics improve. P2P AUC is not computed from its prediction probabilities; it is approximated using the ground-truth label distribution among the five retrieved neighbors. It is therefore not the final classifier’s AUC and is not equivalent to baseline AUC. The fine-tuning pipeline is also underspecified: the local LLM is trained to predict a label but later used to generate a descriptive explanation without a published target for that explanation; SMOTE creates continuous hidden vectors, but the paper does not explain how these become QA-LoRA training examples. No official code or artifact is linked, and seeds, API snapshot, decoding parameters, costs, repeated runs, intervals, and statistical tests are absent. The results demonstrate benchmark performance under severe leakage risk, not reliable psychometric personality inference.
Research question
Can an architecture with efficient fine-tuning of a local LLM, oversampling of minority types, retrieval of labeled examples, and an LLM API surpass baselines in the classification of the four MBTI dichotomies from PersonalityCafe posts?