Stopping Privacy Leaks in Document Models
Listen to the summary
Uses a voice available on your device
Audio options
On this page 4 sections
Related concepts 3 concepts
Key Takeaways
- Addresses relational privacy leakage in document multimodal large language models where models jointly reveal correlated sensitive fields under abnormal or weak-evidence inputs.
- Uses a standard multimodal architecture like LLaVA-1.5-hf, Xgen-Phi3, or Idefics2 processing document images and textual prompts for Key Information Extraction.
- Applies Relational Decoupling Unlearning in the Forget branch to penalize joint generation of sensitive spans.
- Outperforms SCRUB by reducing Image-Driven leakage by 4.8 percentage points and suppressing Prompt-Driven leakage to 0% while maintaining robust performance.
Summary & Methodology Analysis
Document multimodal large language models, which process document images and text together, face a security issue called relational privacy leakage. This occurs when abnormal or weak-evidence inputs trick the model into jointly revealing correlated sensitive fields. Existing privacy protection methods overlook the structured nature of document image Key Information Extraction, focusing instead on single attributes, individual outputs, or reconstructed content in general vision-language scenarios. Furthermore, current unlearning methods mainly suppress sensitive knowledge without explicitly preserving schema level extraction ability, typically relying on predefined forget and retain sets composed of individual concepts.
The authors address this by using standard multimodal architectures such as LLaVA-1.5-hf, Xgen-Phi3, or Idefics2 for Key Information Extraction. They employ standard normal-task optimization alignment via a frozen teacher model and trainable student model on retention data to preserve general extraction capability. The student model is probed periodically using text-free or weakly-grounded input images combined with a fixed prompt to expose high-risk leakage behavior. A dynamic forget set is constructed by collecting distinct leaked sensitive field pairs detected from outputs during probing. Finally, they apply Relational Decoupling Unlearning in the Forget branch, which computes span level KL shifts for the two sensitive spans in each exposed pair and couples them multiplicatively to penalize joint generation. The overall objective is jointly optimized across retain and forget branches to suppress relation level privacy leakage while preserving utility.
Evaluating performance on datasets like DocXPand-25k, LLaVA-1.5-hf achieves an Acc@0.8 of 0.874 and an Acc@1.0 of 0.835 under the Image Driven setting, whereas Idefics2 reaches 0.196 and 0.189. The proposed method, DRUF, outperforms SCRUB by reducing Image-Driven leakage by 4.8 percentage points and suppressing Prompt-Driven leakage to 0% while maintaining robust performance. The paper does not specify hardware requirements, exact training costs, or detailed inference latency numbers.
Interactive System Flowchart
Cross-Examination & FAQs
A deeper dive clarifying mechanics, constraints, and baseline evaluations.
Q1. What problem does this paper solve?
It addresses relational privacy leakage in document multimodal large language models, where models jointly reveal correlated sensitive fields under abnormal or weak-evidence inputs.
Q2. What models are used in the study?
The study uses LLaVA-1.5-hf, Xgen-Phi3, and Idefics2.
Q3. What is the main practical result of the new method?
DRUF outperforms SCRUB by reducing Image-Driven leakage by 4.8 percentage points and suppressing Prompt-Driven leakage to 0% while maintaining robust Key Information Extraction performance.
Q4. What is Key Information Extraction?
It is the task of extracting specific information fields from document images and textual prompts, processed here using standard multimodal architectures.
Q5. How does the training process preserve general capabilities?
It employs standard normal-task optimization alignment via a frozen teacher model and a trainable student model on retention data to preserve general Key Information Extraction capability.
Q6. How does the model find high-risk leakage behavior?
By probing the current student model periodically using text-free or weakly-grounded input images combined with a fixed prompt.
Q7. How is the dynamic forget set constructed?
By collecting distinct leaked sensitive field pairs detected from the model outputs during probing.
Q8. What is Relational Decoupling Unlearning?
It computes span-level KL shifts for the two sensitive spans in each exposed pair and couples them multiplicatively to penalize joint generation.
Q9. What are the limitations of existing privacy protection methods according to the paper?
Existing methods overlook the structured nature of document-image Key Information Extraction, focus on single attributes or reconstructed content, suppress sensitive knowledge without preserving schema-level extraction ability, and rely on predefined forget and retain sets of individual concepts.