xhLiu commited on
Commit
9e073f2
·
verified ·
1 Parent(s): 300dfaf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -3
README.md CHANGED
@@ -1,3 +1,93 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+
6
+
7
+ <div align="center">
8
+
9
+ <h1><a color="red" href="https://arxiv.org/pdf/2507.17343">Principled Multimodal Representation Learning (PMRL)</a></h1>
10
+
11
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
12
+ ![License](https://img.shields.io/badge/Accepted-TPAMI'2026-purple)
13
+
14
+ *A Novel Framework for Representation Learning Across Multiple Modalities*
15
+
16
+ </div>
17
+
18
+ ---
19
+
20
+ ## ✨ Overview
21
+
22
+ ![](img/top.png)
23
+
24
+ **Principled Multimodal Representation Learning (PMRL)** addresses the fundamental challenges in multimodal representation learning by proposing a novel framework that achieves simultaneous alignment of multiple modalities without anchor dependency.
25
+
26
+ ### 💡 Our Solution
27
+
28
+ PMRL introduces a principled approach grounded in **theoretical insights**:
29
+
30
+ > **Key Insight**: Full alignment corresponds to a rank-1 Gram matrix
31
+
32
+ Our framework optimizes the dominant singular value of the representation matrix to align modalities along a shared leading direction.
33
+
34
+ ---
35
+
36
+ ## 🎯 Key Features
37
+
38
+ 🔄 **Simultaneous Multi-Modal Alignment**
39
+ - No predefined anchor modality required
40
+ - Unified representation space for all modalities
41
+
42
+ 🧮 **Softmax-based Loss Function**
43
+ - Treats singular values as logits
44
+ - Prioritizes the largest singular value for stable optimization
45
+
46
+ 🎯 **Instance-wise Contrastive Regularization**
47
+ - Maintains inter-instance separability
48
+ - Prevents representation collapse
49
+
50
+ ⚡ **Distributed Training Support**
51
+ - Multi-GPU training capabilities
52
+ - Efficient data parallel processing
53
+
54
+ 📊 **Comprehensive Evaluation**
55
+ - Extensive benchmarking across diverse tasks
56
+ - Quantitative and qualitative analysis tools
57
+
58
+ ---
59
+
60
+ ## 🏗️ Architecture
61
+
62
+ ![](img/framework.png)
63
+
64
+ The PMRL framework consists of three main components:
65
+
66
+ 1. **🔧 Multi-Modal Encoder**: Processes different input modalities
67
+ 2. **🎯 Singular Value Optimization**: Aligns representations via dominant singular value
68
+ 3. **🔄 Principled Regularization**: Maintains instance-level discrimination
69
+
70
+
71
+ ## Citation
72
+
73
+ If you find this work useful, please consider citing:
74
+
75
+ ```bibtex
76
+ @article{liu2026principled,
77
+ title={Principled multimodal representation learning},
78
+ author={Liu, Xiaohao and Xia, Xiaobo and Ng, See-Kiong and Chua, Tat-Seng},
79
+ journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
80
+ year={2026},
81
+ publisher={IEEE}
82
+ }
83
+ ```
84
+
85
+
86
+
87
+ <div align="center">
88
+
89
+
90
+ **[🔝 Back to Top](#-principled-multimodal-representation-learning-pmrl)**
91
+
92
+ </div>
93
+